Fix build script exit status

This commit is contained in:
Jérôme Petazzoni
2017-11-10 22:57:06 -08:00
parent e9319060f6
commit 93524898cc

View File

@@ -7,9 +7,11 @@ once)
break
}
done
[ -n "$SLIDECHECKER" ] && for YAML in *.yml; do
./appendcheck.py $YAML.html
done
if [ -n "$SLIDECHECKER" ]; then
for YAML in *.yml; do
./appendcheck.py $YAML.html
done
fi
;;
forever)