fsfw/scripts/apply-clang-format.sh

21 lines
683 B
Bash
Raw Normal View History

#!/bin/bash
if [[ ! -f README.md ]]; then
cd ..
fi
2022-05-13 11:37:58 +02:00
cmake_fmt="cmake-format"
2022-05-13 11:35:59 +02:00
if command -v ${cmake_fmt} &> /dev/null; then
2022-05-13 11:35:18 +02:00
cmake_fmt_cmd="${cmake_fmt} -i CMakeLists.txt"
eval ${cmake_fmt_cmd}
else
2022-05-13 11:48:18 +02:00
echo "No ${cmake_fmt} tool found, not formatting CMake files"
2022-05-13 11:35:59 +02:00
fi
cpp_format="clang-format"
2022-05-13 11:46:59 +02:00
if command -v ${cpp_format} &> /dev/null; then
find ./src -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
find ./hal -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
find ./tests -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format --style=file -i
else
2022-05-13 11:48:18 +02:00
echo "No ${cpp_format} tool found, not formatting C++/C files"
fi