From 6b45c16a3843099c60d04b67d01be7b45d345558 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Thu, 3 Jul 2014 20:02:35 +0200 Subject: [PATCH] Added quotes to start.sh --- start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.sh b/start.sh index db29c5ca6..53ca4a3f8 100755 --- a/start.sh +++ b/start.sh @@ -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