wiki.techinc.nl/maintenance/dev/includes/require-php.sh
Southparkfan 96e0ed45a8 Add executable rights for executable (bash) files
I hope these are the last ones.

Change-Id: I281531d8f90932b2cb4a8a99554d4b80607fbaee
2014-10-30 19:05:43 +00:00

8 lines
204 B
Bash
Executable file

# 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