Skip to content

Commit 7876a63

Browse files
committed
Fix ToolPath for paket push
1 parent 942abe4 commit 7876a63

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

WebSharper.Fake.fsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,10 @@ let MakeTargets (args: Args) =
437437
Trace.tracefn "[NUGET] Publishing to %s" nugetPublishUrl
438438
Paket.push <| fun p ->
439439
{ p with
440+
ToolPath =
441+
if Environment.isWindows
442+
then @".paket\paket.exe"
443+
else @".paket/paket"
440444
PublishUrl = nugetPublishUrl
441445
WorkingDir = "build"
442446
}

0 commit comments

Comments
 (0)