mirror of
https://github.com/akheron/jansson.git
synced 2025-04-03 20:45:03 +00:00
Improve clang-format scripts
This commit is contained in:
parent
842708ac0c
commit
0247b5e2e7
2 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue