Skip to content

Commit

Permalink
fix zipping issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmelsayed committed Mar 2, 2018
1 parent 10ff6e3 commit 326e518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 326e518

Please sign in to comment.