diff options
-rwxr-xr-x | serve.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,10 +3,10 @@ php_bin="" port=8000 -for try_bin in {php7,php} +for try_bin in php7 php do php_bin=$(command -v $try_bin) - if [[ -n "$php_bin" ]] + if [ -n "$php_bin" ] then break fi |