This commit is contained in:
Robin Müller 2022-05-13 11:49:01 +02:00
parent 99fe6487c8
commit 01ebf0f4d3
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 8 additions and 8 deletions

View File

@ -1,21 +1,21 @@
#!/bin/bash
if [[ ! -f README.md ]]; then
cd ..
cd ..
fi
cmake_fmt="cmake-format"
if command -v ${cmake_fmt} &> /dev/null; then
cmake_fmt_cmd="${cmake_fmt} -i CMakeLists.txt"
eval ${cmake_fmt_cmd}
cmake_fmt_cmd="${cmake_fmt} -i CMakeLists.txt"
eval ${cmake_fmt_cmd}
else
echo "No ${cmake_fmt} tool found, not formatting CMake files"
echo "No ${cmake_fmt} tool found, not formatting CMake files"
fi
cpp_format="clang-format"
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
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
echo "No ${cpp_format} tool found, not formatting C++/C files"
echo "No ${cpp_format} tool found, not formatting C++/C files"
fi