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"
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"