Static analysis progress

main
Bob Mottram 2020-04-05 10:34:31 +01:00
parent 14433d8534
commit 0a5a9d439b
1 changed files with 3 additions and 0 deletions

View File

@ -15,11 +15,14 @@ do
fi fi
result=$($cmd "$sourceFile") result=$($cmd "$sourceFile")
if [ "$result" ]; then if [ "$result" ]; then
echo ''
echo "$result" echo "$result"
exit 1 exit 1
fi fi
echo -n '.'
done done
echo ''
echo "Static analysis complete" echo "Static analysis complete"
exit 0 exit 0