From 9685885b01aa695e291a680f59b5536e2cbf7ad3 Mon Sep 17 00:00:00 2001 From: Jordan Bates Date: Tue, 28 May 2013 13:51:27 -0700 Subject: [PATCH] Lets use copy instead of compress --- Gruntfile.coffee | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 0edb14d09..61387bb9d 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -81,6 +81,9 @@ module.exports = (grunt) -> dest: 'builds/crx/' expand: true flatten: true + opera: + files: + 'builds/4chan-X-Opera.nex': 'builds/4chan-X-Chrome.zip' coffee: script: @@ -130,14 +133,6 @@ module.exports = (grunt) -> expand: true cwd: 'builds/crx/' src: '**' - opera: - options: - archive: 'builds/4chan-X-Opera.nex' - level: 9 - pretty: true - expand: true - cwd: 'builds/crx/' - src: '**' clean: builds: 'builds' @@ -195,7 +190,7 @@ module.exports = (grunt) -> grunt.registerTask 'release', [ 'default' 'compress:crx' - 'compress:opera' + 'copy:opera' 'shell:commit' 'shell:push' ]