Added newline at ed of file

This commit is contained in:
Benoit Blanchon
2014-10-23 23:45:36 +02:00
parent e85f27c0f3
commit 55b0eab3e6
39 changed files with 44 additions and 39 deletions

View File

@ -1,2 +1,7 @@
cd ..
find include src test -regex ".*\.[ch]pp$" -exec clang-format -style=Google -i {} \;
FILES=$(find include src test -regex ".*\.[ch]pp$")
clang-format -style=Google -i $FILES
# insert newline at end of file
sed -i -e '$a\' $FILES