cronos-bundle
cronos-bundle copied to clipboard
[BUGFIX] Solved link to absolute paths with spaces
Example output before change:
/usr/local/bin/php /Users/ketelaar/Projects/My Project/bin/console
This basically means you are executing /Users/ketelaar/Projects/My
with php
Example output after change:
/usr/local/bin/php /Users/ketelaar/Projects/My\ Project/bin/console
The inspection completed: 1 new issues
@gavinlove Bump
Although this fixes the problem you have I don't think it is the right solution. I am going to look into escapeshellarg instead.