Closed
Description
Hey,
if I take the following (ember cli) command and run:
node node_modules/ember-cli/bin/ember test --filter="Team Test |"
the arguments passed to the test
command are Team Test |
, which is correct.
But if I do the following:
nvm exec node node_modules/ember-cli/bin/ember test --filter="Team Test |"
the arguments are split like so "Team", "Test", "|"
which is not correct
Do you have any suggestion on how to escape the command to be parsed correctly?
I'm running nvm 0.29
Thanks