From e4046426c5649047d7442f173b9f113568b8c738 Mon Sep 17 00:00:00 2001 From: Petar Petrov Date: Wed, 10 Jun 2015 22:29:21 +0200 Subject: [PATCH] Fix zip Grunt task --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index cce2e09..fd2677f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -137,7 +137,7 @@ module.exports = function (grunt) { archive: 'strider-v' + pkg.version + '.zip' }, files: [ - {src: ['dist/**'], dest: '/'}, + {expand: true, cwd: 'dist/', src: ['**/*']}, ] } }