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
Currently one cannot configure to run multiple commands with one liners like:
command: 'npm uninstall X && ember test --filter unit'
Main issue being that commands are run with child_process.spawn and not with exec. I understand that spawn is used through out the addon but maybe there is something we could do about it?
Workaround: Move command into *.sh file and set it up to be run by ember-try.
command: "./my-script.sh"
The text was updated successfully, but these errors were encountered:
Currently one cannot configure to run multiple commands with one liners like:
command: 'npm uninstall X && ember test --filter unit'
Main issue being that commands are run with child_process.spawn and not with exec. I understand that spawn is used through out the addon but maybe there is something we could do about it?
Workaround: Move command into *.sh file and set it up to be run by ember-try.
command: "./my-script.sh"
The text was updated successfully, but these errors were encountered: