Update from upstream #85

Merged
meierj merged 91 commits from mueller/update-from-upstream into develop 2022-05-16 22:08:28 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 99fe6487c8 - Show all commits

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