From 6794dce6a5730a8242555a17f59ee53ba7407a43 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Wed, 14 Feb 2018 20:08:40 +0100 Subject: [PATCH] Build: another trial at fixing the automatic nuget push on releases --- build/build-framework.fsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build-framework.fsx b/build/build-framework.fsx index 19c98732..bd716cb7 100644 --- a/build/build-framework.fsx +++ b/build/build-framework.fsx @@ -365,7 +365,7 @@ let publishNuGet packageFiles = let rec impl trials file = trace ("NuGet Push: " + System.IO.Path.GetFileName(file) + ".") try - let args = sprintf "push \"%s\"" (FullName file) + let args = sprintf """push "%s" -Source https://api.nuget.org/v3/index.json""" (FullName file) let result = ExecProcess (fun info -> info.FileName <- "packages/build/NuGet.CommandLine/tools/NuGet.exe"