From 326e5188b60747218e839aef7b820a66d3d613cf Mon Sep 17 00:00:00 2001 From: Ahmed ElSayed Date: Thu, 1 Mar 2018 17:51:56 -0800 Subject: [PATCH] fix zipping issue --- build.fsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 =