Fix ci formatter to format all files

This commit is contained in:
Nicolas Werner 2019-09-08 17:28:26 +02:00
parent e20501cec7
commit 656861fa9d
1 changed files with 3 additions and 1 deletions

View File

@ -11,5 +11,7 @@ FILES=$(find src -type f -type f \( -iname "*.cpp" -o -iname "*.h" \))
for f in $FILES
do
clang-format -i "$f" && git diff --exit-code
clang-format -i "$f"
done;
git diff --exit-code