diff options
| -rw-r--r-- | Gruntfile.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 0175831c..69ae7397 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -10,6 +10,7 @@ module.exports = function(grunt) { grunt.loadTasks('lib/grunt'); var NG_VERSION = util.getVersion(); + var dist = 'angular-'+ NG_VERSION.full; //global beforeEach @@ -147,8 +148,8 @@ module.exports = function(grunt) { compress: { build: { - options: {archive: 'build/angular-'+ NG_VERSION.full +'.zip'}, - src: ['**'], cwd: 'build', expand: true + options: {archive: 'build/' + dist +'.zip'}, + src: ['**'], cwd: 'build', expand: true, dest: dist + '/' } }, |
