Skip to content

Commit

Permalink
fix zip packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
scorpp committed Feb 8, 2019
1 parent 09cf9b1 commit 833ab5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -152,7 +152,7 @@ gulp.task('package', ['build'], (cb) => {
let zipTasks = [];
for (let i = 0; i < themes.length; i++) {
zipTasks.push(
gulp.src(path.join(themesDirectory, themes[i]) + '/*')
gulp.src(path.join(themesDirectory, themes[i]) + '/**')
.pipe(zip(themes[i] + '.zip'))
.pipe(gulp.dest(outputDir))
);
Expand Down

0 comments on commit 833ab5a

Please sign in to comment.