mirror of
https://github.com/akheron/jansson.git
synced 2025-04-04 13:05:02 +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
|
#!/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
|
errors=0
|
||||||
paths=$(git ls-files | grep '\.[ch]$')
|
paths=$(git ls-files | grep '\.[ch]$')
|
||||||
for path in $paths; do
|
for path in $paths; do
|
||||||
|
echo "Checking $path"
|
||||||
|
$CLANG_FORMAT $path > $path.formatted
|
||||||
in=$(cat $path)
|
in=$(cat $path)
|
||||||
out=$($CLANG_FORMAT $path)
|
out=$(cat $path.formatted)
|
||||||
|
|
||||||
if [ "$in" != "$out" ]; then
|
if [ "$in" != "$out" ]; then
|
||||||
diff -u -L $path -L "$path.formatted" $path - <<<$out
|
diff -u $path $path.formatted
|
||||||
errors=1
|
errors=1
|
||||||
fi
|
fi
|
||||||
|
rm $path.formatted
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ $errors -ne 0 ]; then
|
if [ $errors -ne 0 ]; then
|
||||||
|
|
Loading…
Add table
Reference in a new issue