Enabled built-in PHP

This commit is contained in:
MinecrafterJPN 2014-07-22 09:46:47 +09:00
parent 14d86339fc
commit 090d159766

View File

@ -24,7 +24,7 @@ done
if [ "$PHP_BINARY" == "" ]; then
if [ -f ./bin/php5/bin/php ]; then
PHP_BINARY="./bin/php5/bin/php"
elif [ type php 2>/dev/null ]; then
elif type php > /dev/null 2>&1 ; then
PHP_BINARY=$(type -p php)
else
echo "Couldn't find a working PHP binary, please use the installer."
@ -57,4 +57,4 @@ done
if [ ${LOOPS} -gt 1 ]; then
echo "Restarted $LOOPS times"
fi
fi