mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-18 05:04:51 +08:00
36 lines
897 B
Bash
Executable File
36 lines
897 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# shellcheck disable=SC2068
|
|
# shellcheck disable=SC2181
|
|
# author: crazywhalecc
|
|
# since: 2.5.0
|
|
|
|
|
|
if [ -f "$(pwd)/runtime/php" ]; then
|
|
executable="$(pwd)/runtime/php"
|
|
echo "* Framework started with built-in php."
|
|
else
|
|
which php >/dev/null 2>&1
|
|
if [ $? -eq 0 ]; then
|
|
executable=$(which php)
|
|
else
|
|
echo '[ErrCode:E00014] Cannot find any PHP runtime, please use command "./install-runtime.sh" or install PHP manually!'
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
result=$(echo "$1" | grep -E "module|build")
|
|
|
|
if [ "$result" != "" ]; then
|
|
executable="$executable -d phar.readonly=off"
|
|
fi
|
|
|
|
if [ -f "$(pwd)/src/entry.php" ]; then
|
|
$executable "$(pwd)/src/entry.php" $@
|
|
elif [ -f "$(pwd)/vendor/zhamao/framework/src/entry.php" ]; then
|
|
$executable "$(pwd)/vendor/zhamao/framework/src/entry.php" $@
|
|
else
|
|
echo "[ErrCode:E00015] Cannot find zhamao-framework entry file!"
|
|
exit 1
|
|
fi
|