Skip to content

Commit

Permalink
Merge pull request #759 from kiike/pr/clean_collection_after_unzipping
Browse files Browse the repository at this point in the history
gruntfile: clean collection after unzipping
  • Loading branch information
cavearr authored Jul 10, 2024
2 parents 9001aeb + 62b0a63 commit 08238da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -693,9 +693,9 @@ module.exports = function (grunt) {
//-- This task is called in the npm postinstallation
//-- (after npm install is executed)
grunt.registerTask("getcollection", [
"clean:collection", //-- Remove previous collection downloaded
"wget:collection", //-- Download the collection
"unzip" //-- Unzip the collection (install it)
"unzip", //-- Unzip the collection (install it)
"clean:collection" //-- Remove previously downloaded collection
]);

//-- grunt server
Expand Down

0 comments on commit 08238da

Please sign in to comment.