Skip to content

Commit 2fab17b

Browse files
committed
specify NuGet source when publishing
1 parent ee9e36c commit 2fab17b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Target "nuget-package" (fun () ->
2929
Target "nuget-push" (fun () ->
3030
let nupkgPath = Directory.EnumerateFiles("dist", "*.nupkg").First()
3131

32-
exec "tools/nuget.exe" ("push " + nupkgPath)
32+
exec "tools/nuget.exe" (sprintf "push %s -Source https://api.nuget.org/v3/index.json" nupkgPath)
3333
)
3434

3535
"restore"

0 commit comments

Comments
 (0)