From 90eac66ea83682302224a207ec96bb01385e625c Mon Sep 17 00:00:00 2001 From: Giancarlo Di Massa Date: Sat, 22 Jun 2024 18:15:33 +0200 Subject: [PATCH] Update sake Fix bug in sake that happens when the PHP interpreter is a directory with spaces in it. --- sake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sake b/sake index 65d9af3394a..59103445b54 100755 --- a/sake +++ b/sake @@ -42,7 +42,7 @@ fi # Find the PHP binary for candidatephp in php php5; do - if [ `which $candidatephp 2>/dev/null` -a -f `which $candidatephp 2>/dev/null` ]; then + if [ "`which $candidatephp 2>/dev/null`" -a -f "`which $candidatephp 2>/dev/null`" ]; then php=`which $candidatephp 2>/dev/null` break fi @@ -116,4 +116,4 @@ fi ################################################################################################ ## Basic execution -$php $framework/cli-script.php ${*} +"$php" "$framework/cli-script.php" "${@}"