fix test php binary in start.sh

This commit is contained in:
SJ Zhu 2015-11-01 20:47:41 +08:00
parent 04fc062b2a
commit 680d40d070

View File

@ -25,7 +25,7 @@ if [ "$PHP_BINARY" == "" ]; then
if [ -f ./bin/php5/bin/php ]; then
export PHPRC=""
PHP_BINARY="./bin/php5/bin/php"
elif [ type php 2>/dev/null ]; then
elif type php 2>/dev/null; then
PHP_BINARY=$(type -p php)
else
echo "Couldn't find a working PHP binary, please use the installer."