Skip to content

Commit c3274a5

Browse files
committed
zip folder into zip file
1 parent 0f6a5a7 commit c3274a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var gulp = require('gulp');
22
var zip = require('gulp-zip');
33

44
gulp.task('default', function() {
5-
return gulp.src(['main.js', 'manifest.webapp', 'LICENSE', 'icons/*'])
5+
return gulp.src(['main.js', 'manifest.webapp', 'LICENSE', '**/icons/*'])
66
.pipe(zip('application.zip'))
77
.pipe(gulp.dest('./'));
88
});

0 commit comments

Comments
 (0)