mirror of https://github.com/zeldaret/tp.git
15 lines
330 B
Bash
15 lines
330 B
Bash
#!/bin/bash
|
|
|
|
clangFormatTargets=$(find . -type f -regex '.*\.\(cpp\|hpp\|h\|cc\|cxx\)')
|
|
|
|
for inputFile in $clangFormatTargets
|
|
do
|
|
clang-format-10 -style=file $inputFile > $inputFile-formatted
|
|
diff $inputFile $inputFile-formatted
|
|
if [ $? != 0 ] ; then
|
|
exit 1
|
|
else
|
|
rm $inputFile-formatted
|
|
fi
|
|
done
|