mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 08:44:01 +00:00
16 lines
387 B
Bash
Executable File
16 lines
387 B
Bash
Executable File
#!/bin/bash
|
|
DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd "$DIR"
|
|
if [ -f ./php5/bin/php ]; then
|
|
mkdir -m 0777 bin/
|
|
mv ./php5/bin/php ./bin/php
|
|
rm -r -f ./php5/
|
|
fi
|
|
if [ -f ./bin/php ]; then
|
|
./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 $@
|
|
read -p "Press [Enter] to continue..."
|
|
exit 0 |