Improve clang-format scripts

This commit is contained in:
Petri Lehtinen 2024-03-15 21:06:34 +02:00
parent 842708ac0c
commit 0247b5e2e7
2 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,3 @@
#!/bin/bash
find . -type f -a '(' -name '*.c' -o -name '*.h' ')' | xargs clang-format -i
git ls-files | grep '\.[ch]$' | xargs clang-format -i

View file

@ -12,13 +12,16 @@ fi
errors=0
paths=$(git ls-files | grep '\.[ch]$')
for path in $paths; do
echo "Checking $path"
$CLANG_FORMAT $path > $path.formatted
in=$(cat $path)
out=$($CLANG_FORMAT $path)
out=$(cat $path.formatted)
if [ "$in" != "$out" ]; then
diff -u -L $path -L "$path.formatted" $path - <<<$out
diff -u $path $path.formatted
errors=1
fi
rm $path.formatted
done
if [ $errors -ne 0 ]; then