You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
On MacOS Chataigne is not able to launch my provided .sh command file. The reason is clear: Chataigne does not put the filepath in quotation marks in the CD command it puts into terminal. It should be an very easy fix. Just add quotation marks in the generated statement and it works again.
To Reproduce
Put an OS Module, Create Action somewhere where you try to launch a command file.
Expected behavior
cd "filepath/with spaces/command.sh" && sh "command.sh" instead of cd filepath/with spaces/command.sh && sh "command.sh"
The text was updated successfully, but these errors were encountered:
Environment
Describe the bug
On MacOS Chataigne is not able to launch my provided .sh command file. The reason is clear: Chataigne does not put the filepath in quotation marks in the CD command it puts into terminal. It should be an very easy fix. Just add quotation marks in the generated statement and it works again.
To Reproduce
Put an OS Module, Create Action somewhere where you try to launch a command file.
Expected behavior
cd
"filepath/with spaces/command.sh" && sh "command.sh"
instead ofcd filepath/with spaces/command.sh && sh "command.sh"
The text was updated successfully, but these errors were encountered: