Allow for command-line arguments to starter scripts

This commit is contained in:
Shoghi Cervantes Pueyo
2013-01-28 18:10:43 +01:00
parent d9e9b9fd22
commit 50ae0953ac
2 changed files with 6 additions and 6 deletions

View File

@ -2,10 +2,10 @@
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
./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
php -d enable_dl=On PocketMine-MP.php $@
read -p "Press [Enter] to continue..."
exit 0