Finally, I can spawn AGAIN!

This commit is contained in:
Shoghi Cervantes
2014-03-11 20:45:53 +01:00
parent b4df7c9456
commit b3a2d3164f
207 changed files with 1407 additions and 1253 deletions

View File

@ -49,9 +49,9 @@ LOOPS=0
set +e
while [ "$LOOPS" -eq 0 ] || [ "$DO_LOOP" == "yes" ]; do
if [ "$DO_LOOP" == "yes" ]; then
"$PHP_BINARY" -d enable_dl=On "$POCKETMINE_FILE" $@
"$PHP_BINARY" "$POCKETMINE_FILE" $@
else
exec "$PHP_BINARY" -d enable_dl=On "$POCKETMINE_FILE" $@
exec "$PHP_BINARY" "$POCKETMINE_FILE" $@
fi
((LOOPS++))
done