mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-21 08:17:34 +00:00
9 lines
307 B
Bash
Executable File
9 lines
307 B
Bash
Executable File
#!/bin/bash
|
|
DIR="$(cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
|
|
cd "$DIR"
|
|
if [ -f ./bin/php5/bin/php ]; then
|
|
exec ./bin/php5/bin/php -d enable_dl=On PocketMine-MP.php $@
|
|
else
|
|
echo "[WARNING] You are not using the standalone PocketMine-MP PHP binary."
|
|
exec php -d enable_dl=On PocketMine-MP.php $@
|
|
fi |