-
Notifications
You must be signed in to change notification settings - Fork 585
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
Update Fake.Tools.Pickles #2133
Conversation
3e25f6c
to
6ebc433
Compare
@matthid Added unit tests and fixed the resulting bugs ;) |
Tried to fix on the phone but I failed :( |
let expectedPath = Path.Combine("pickles", "pickles.exe") | ||
Expect.equal file expectedPath "Expected pickles.exe" | ||
|
||
expectedPath, cp.Command.CommandLine |
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.
this needs to use the 'args' variable and not 'cp' in order to work with mono environments...
I think '(RawCommand(file, args)).CommandLine' should work
Can you please change the other ones as well, this should make the build green again
@matthid It seems now to work except for that the check for mono fails, if there are no arguments at all |
Ah yes, thanks for taking care of this! |
@matthid Yay, Travis is now green too ;) |
Yes thanks a lot :) |
Description
Pickles has gotten some additional command line parameters
I added them and updated the command line generation from a StringBuilder to
Args.toWindowsCommandLine
TODO