We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a58b4d5 commit 5e011faCopy full SHA for 5e011fa
build.fsx
@@ -787,7 +787,7 @@ Target "DotnetCorePushNuGet" (fun _ ->
787
if not <| System.String.IsNullOrEmpty apikey then
788
ExecProcess (fun info ->
789
info.FileName <- nuget_exe
790
- info.Arguments <- sprintf "push '%s' '%s' -Source '%s'" nugetpackage apikey nugetsource) (System.TimeSpan.FromMinutes 5.)
+ info.Arguments <- sprintf "push %s %s -Source %s" (toParam nugetpackage) (toParam apikey) (toParam nugetsource)) (System.TimeSpan.FromMinutes 5.)
791
|> (fun r -> if r <> 0 then failwithf "failed to push package %s" nugetpackage)
792
793
// dotnet pack
0 commit comments