We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When trying to use paket wrapper as a localtool, it doesn't seem to add the actual command to the shell.
Please provide the steps required to reproduce the problem
For example given this code (this can also be reproduced with restore instead of push):
Paket.push(fun c -> { c with ToolType = ToolType.CreateLocalTool() PublishUrl = publishUrl WorkingDir = "dist" } )
This shells out with this output:
dist> "/usr/local/share/dotnet/dotnet" paket --url https://www.nuget.org MyLibrary/dist/MyLibrary.1.0.1.0.nupkg (In: false, Out: false, Err: false) ERROR: unrecognized argument: '--url'.
It should also have push in the output. so:
push
dist> "/usr/local/share/dotnet/dotnet" paket push --url https://www.nuget.org MyLibrary/dist/MyLibrary.1.0.1.0.nupkg
n/a
The text was updated successfully, but these errors were encountered:
Yes an unfortunate duplicate of #2411, I'm working on it
Sorry, something went wrong.
No branches or pull requests
Description
When trying to use paket wrapper as a localtool, it doesn't seem to add the actual command to the shell.
Repro steps
Please provide the steps required to reproduce the problem
For example given this code (this can also be reproduced with restore instead of push):
This shells out with this output:
Expected behavior
It should also have
push
in the output. so:Actual behavior
Known workarounds
n/a
Related information
The text was updated successfully, but these errors were encountered: