-
-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow chained commands and setting env vars in commands #107
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems good, do we run appveyor (to confirm windows changes work)?
99675a8
to
0a08ec1
Compare
Sounds good. |
Manually checked on windows: All the previous types of commands seem to work, but chained commands do not. |
On linux, |
|
@kellyselden |
- Add note to readme about needing to npm link ember-try
7c1512d
to
b27363f
Compare
Allows:
ember try:one <scenario> --- FOO=5 ember test
ember try:one <scenario> --- 'ember test && echo 2'
(note quotes)The same goes for the command in the config file.
Fixes #94 and #87