From 7c340acd09eebf43ceb39a4a4471f6eaed457593 Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Wed, 27 Apr 2016 22:44:20 -0700 Subject: [PATCH] Leave modpack archive in place for local builds --- .gitignore | 1 + Gruntfile.coffee | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 27dc7317..9bb93ea3 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ aws.config build dist node_modules +data/modpack.cg diff --git a/Gruntfile.coffee b/Gruntfile.coffee index e302f0ac..660ff73e 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -54,7 +54,7 @@ module.exports = (grunt)-> ['test'] grunt.registerTask 'dist', 'build the project to be run from Amazon S3', - ['clean', 'script:compile-archive', 'symlink:images', 'compress', 'clean:modpack'] + ['clean', 'script:compile-archive', 'symlink:images', 'compress'] grunt.registerTask 'test', 'run unit tests', ['mochaTest']