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 10ff6e3 commit 326e518Copy full SHA for 326e518
build.fsx
@@ -119,11 +119,11 @@ Target "Zip" (fun _ ->
119
|> List.iter (fun runtime ->
120
!! (buildDir @@ runtime @@ @"/**/*.*")
121
|> (fun f -> List.fold (--) f excludedFiles)
122
- |> Zip buildDir (deployDir @@ ("Azure.Functions.Cli." + runtime + ".zip")))
+ |> Zip (buildDir @@ runtime) (deployDir @@ ("Azure.Functions.Cli." + runtime + ".zip")))
123
124
!! (buildDirNoRuntime @@ @"/**/*.*")
125
126
- |> Zip buildDir (deployDir @@ "Azure.Functions.Cli.no-runtime.zip")
+ |> Zip buildDirNoRuntime (deployDir @@ "Azure.Functions.Cli.no-runtime.zip")
127
)
128
129
type SigningInfo =
0 commit comments