File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ Target.create "Push" (fun _ ->
172
172
match getBuildParam " nuget-key" with
173
173
| s when not ( isNullOrWhiteSpace s) -> s
174
174
| _ -> UserInput.getUserPassword " NuGet Key: "
175
- Paket.push ( fun p -> { p with WorkingDir = nugetDir; ApiKey = key }))
175
+ Paket.push ( fun p -> { p with WorkingDir = nugetDir; ApiKey = key; ToolType = ToolType.CreateLocalTool () }))
176
176
177
177
// --------------------------------------------------------------------------------------
178
178
// Build order
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ Target.create "Push" (fun _ ->
90
90
match getBuildParam " nuget-key" with
91
91
| s when not ( isNullOrWhiteSpace s) -> s
92
92
| _ -> UserInput.getUserPassword " NuGet Key: "
93
- Paket.push ( fun p -> { p with WorkingDir = nupkgDir; ApiKey = key }))
93
+ Paket.push ( fun p -> { p with WorkingDir = nupkgDir; ApiKey = key; ToolType = ToolType.CreateLocalTool () }))
94
94
95
95
Target.create " Release" DoNothing
96
96
@@ -100,4 +100,4 @@ Target.create "Release" DoNothing
100
100
==> " Push"
101
101
==> " Release"
102
102
103
- Target.runOrDefault " Pack"
103
+ Target.runOrDefault " Pack"
You can’t perform that action at this time.
0 commit comments