From cac2a3a6e5528b1b2298b9605a020efbd48ada94 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Pueyo Date: Tue, 15 Jan 2013 16:17:34 +0100 Subject: [PATCH] Added pause to start.sh --- start.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 70de19e897..e7ad5b6ab5 100644 --- a/start.sh +++ b/start.sh @@ -3,6 +3,9 @@ DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR if [ -f php5/bin/php ]; then ./php5/bin/php -d enable_dl=On PocketMine-MP.php +read -p "Press [Enter] to continue..." exit 0 fi -php -d enable_dl=On PocketMine-MP.php \ No newline at end of file +php -d enable_dl=On PocketMine-MP.php +read -p "Press [Enter] to continue..." +exit 0 \ No newline at end of file