Added quotes to start.sh

This commit is contained in:
Shoghi Cervantes 2014-07-03 20:02:35 +02:00
parent 8b2440ff96
commit 6b45c16a38

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" "$POCKETMINE_FILE" $@
"$PHP_BINARY" "$POCKETMINE_FILE" "$@"
else
exec "$PHP_BINARY" "$POCKETMINE_FILE" $@
exec "$PHP_BINARY" "$POCKETMINE_FILE" "$@"
fi
((LOOPS++))
done