From 2079fabb1e7f419ee4ad0d064d42c31de32f213d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Venegas=20Arrab=C3=A9?= <6904865+cavearr@users.noreply.github.com> Date: Wed, 10 Jul 2024 23:12:34 +0200 Subject: [PATCH] Revert "gruntfile: clean collection after unzipping" --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 385955392..bf30275e2 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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) - "clean:collection" //-- Remove previously downloaded collection + "unzip" //-- Unzip the collection (install it) ]); //-- grunt server