Robin Mueller
d2337a769c
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good
8 lines
249 B
Bash
Executable File
8 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
if [[ ! -f README.md ]]; then
|
|
cd ..
|
|
fi
|
|
|
|
find ./bsp_hosted -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
|
|
find ./example_common -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
|