Merge pull request #11290 from digitall-it/patch-1

Fix #11289: Handle paths with spaces in Silverstripe's sake script
This commit is contained in:
Guy Sartorelli 2024-06-24 12:39:32 +12:00 committed by GitHub
commit bdd27b96b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

4
sake
View File

@ -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" "${@}"