another small improvement
fsfw/fsfw/pipeline/head Build queued... Details

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

View File

@ -8,7 +8,7 @@ if command -v ${cmake_fmt} &> /dev/null; then
cmake_fmt_cmd="${cmake_fmt} -i CMakeLists.txt"
eval ${cmake_fmt_cmd}
else
echo "No cmake-format tool found, not formatting CMake files"
echo "No ${cmake_fmt} tool found, not formatting CMake files"
fi
cpp_format="clang-format"
@ -17,5 +17,5 @@ if command -v ${cpp_format} &> /dev/null; then
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 clang-format tool found, not formatting C++/C files"
echo "No ${cpp_format} tool found, not formatting C++/C files"
fi