mirror of
https://github.com/wassname/scikit-image.git
synced 2026-08-12 12:30:16 +08:00
Fix formatting of 'for' loops
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user