mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
8 lines
204 B
Bash
8 lines
204 B
Bash
# Include-able script to require that we have a known php binary we can execute
|
|
|
|
. "$DEV/includes/php.sh"
|
|
|
|
if [ "x$PHP" == "x" -o ! -x "$PHP" ]; then
|
|
echo "Local copy of PHP is not installed"
|
|
exit 1
|
|
fi
|