Skip to content

Commit

Permalink
Merge pull request #70 from MaiklT/Cakefix
Browse files Browse the repository at this point in the history
Cakefix
  • Loading branch information
valadas authored May 27, 2023
2 parents 3cd4e7d + 25fa6de commit 30e4cbc
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions DNN.Survey/build.cake
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#addin nuget:?package=SharpZipLib
#addin nuget:?package=Cake.Compression
#addin nuget:?package=SharpZipLib&version=1.4.2
#addin nuget:?package=Cake.Compression&version=0.2.6

///////////////////////////////////////////////////////////////////////////////
// ARGUMENTS
Expand Down Expand Up @@ -85,7 +84,10 @@ Task("ReleasePackage")
Zip("./Install/Package", "./Install/" + "Dnn.Modules.Survey_" + version + "_Install.zip");
// CLEANUP TEMP FOLDER
DeleteDirectory("./Install/Package", true);
DeleteDirectory("./Install/Package", new DeleteDirectorySettings{
Recursive = true,
Force = true
});
});

Task("Default")
Expand Down

0 comments on commit 30e4cbc

Please sign in to comment.