Fix formatting of 'for' loops

This commit is contained in:
Steven Silvester
2014-10-11 04:58:10 -05:00
parent 6e326add18
commit 73e639e3b6
+4 -4
View File
@@ -50,15 +50,15 @@ fi
tools/header.py "Run doc examples"
PYTHONPATH="..":$PYTHONPATH
for f in doc/examples/*.py;
do python "$f";
for f in doc/examples/*.py; do
python "$f";
if [ $? -ne 0 ]; then
exit 1;
fi
done
for f in doc/examples/applications/*.py;
do python "$f";
for f in doc/examples/applications/*.py; do
python "$f";
if [ $? -ne 0 ]; then
exit 1;
fi