require-php.sh 204 B

12345678
  1. # Include-able script to require that we have a known php binary we can execute
  2. . "$DEV/includes/php.sh"
  3. if [ "x$PHP" == "x" -o ! -x "$PHP" ]; then
  4. echo "Local copy of PHP is not installed"
  5. exit 1
  6. fi