0
0
mirror of https://github.com/pmmp/PHP-Binaries.git synced 2025-04-05 23:24:29 +00:00
Files
2014-07-04 01:44:27 +02:00

9 lines
101 B
Bash

#!/bin/bash
OUTPUT=$("$PHP_BINARIES" -r 'echo 1;')
if [ "$OUTPUT" != "1" ]; then
exit 1
fi
exit 0