Skip to content

Commit

Permalink
Fix zipping of package
Browse files Browse the repository at this point in the history
  • Loading branch information
bdukes committed Sep 28, 2015
1 parent 1670ef0 commit 3b8cd02
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build/build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ Target "Build" (fun _ ->
)

Target "Package" (fun _ ->
!! (tempDir + "**/*")
++ (srcDir + "*.dnn")
!! (srcDir + "*.dnn")
++ (rootDir + "LICENSE.htm")
++ (rootDir + "CHANGES.htm")
|> Copy tempDir


!! (tempDir + "**/*")
|> Zip tempDir (distDir + "Engage-SafeDnnMinification_Install.zip")
)

Expand Down

0 comments on commit 3b8cd02

Please sign in to comment.