Skip to content

Commit

Permalink
Merge pull request #30 from ArsalanDotMe/master
Browse files Browse the repository at this point in the history
No space in generated zip
  • Loading branch information
gokulkrishh committed Nov 30, 2014
2 parents 0b7656f + 6c3a0bc commit f83311a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/_gulpfile.js
Expand Up @@ -331,7 +331,7 @@ gulp.task('clean:zip', function () {

gulp.task('zip', function () {
gulp.src([SETTINGS.build.app + '*', SETTINGS.build.app + '**/*'])
.pipe(gulpPlugins.zip('build-' + new Date() + '.zip'))
.pipe(gulpPlugins.zip('build-' + Date.now() + '.zip'))
.pipe(gulp.dest('./zip/'));

setTimeout(function () {
Expand Down Expand Up @@ -374,4 +374,4 @@ gulp.task('bs', function () {
port: serverConfig.port
}
});
});
});

0 comments on commit f83311a

Please sign in to comment.