Fix #11289: Handle paths with spaces in Silverstripe's sake script #11290
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Expected Behaviour:
vendor/bin/sake
should function correctly regardless of where the PHP binary is located, even if the path includes spaces.Observed Behaviour: If the path to the PHP interpreter contains spaces, the script fails with an error because the path isn’t wrapped in quotes, leading to incorrect parsing of the command.
This fix ensures that all paths in the
sake
script are properly quoted to handle spaces and other special characters that might appear in directory names.Manual Testing Steps
vendor/bin/sake build
to ensure it picks up the PHP binary and executes without errors.sake
is used to ensure no other side effects are introduced by this change.Issues
Pull Request Checklist
Additional Notes
Please review the changes and provide feedback or merge if everything is in order.
Thank you!