3 changed files with 36 additions and 6 deletions
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash |
||||
echo pwd:$PWD |
||||
format=$1 |
||||
format_wildcards=""" |
||||
./matrix/*.*pp |
||||
./test/*.*pp |
||||
""" |
||||
|
||||
if [[ $format ]] |
||||
then |
||||
echo formatting |
||||
astyle ${format_wildcards} |
||||
else |
||||
echo checking format |
||||
astyle --dry-run ${format_wildcards} | grep Formatted |
||||
if [[ $? -eq 0 ]] |
||||
then |
||||
echo need to format |
||||
exit 1 |
||||
fi |
||||
fi |
Loading…
Reference in new issue