diff --git a/build.fsx b/build.fsx index 2d54bc1bb..c4f1f623d 100644 --- a/build.fsx +++ b/build.fsx @@ -119,11 +119,11 @@ Target "Zip" (fun _ -> |> List.iter (fun runtime -> !! (buildDir @@ runtime @@ @"/**/*.*") |> (fun f -> List.fold (--) f excludedFiles) - |> Zip buildDir (deployDir @@ ("Azure.Functions.Cli." + runtime + ".zip"))) + |> Zip (buildDir @@ runtime) (deployDir @@ ("Azure.Functions.Cli." + runtime + ".zip"))) !! (buildDirNoRuntime @@ @"/**/*.*") |> (fun f -> List.fold (--) f excludedFiles) - |> Zip buildDir (deployDir @@ "Azure.Functions.Cli.no-runtime.zip") + |> Zip buildDirNoRuntime (deployDir @@ "Azure.Functions.Cli.no-runtime.zip") ) type SigningInfo =