Skip to content

Commit

Permalink
Merge pull request #3701 from dennybiasiolli/fixing-gulp-package
Browse files Browse the repository at this point in the history
gulp package: fixing encoding before piping to zip
  • Loading branch information
hakimel authored Oct 29, 2024
2 parents 16ac4b0 + c9ad332 commit a6417ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ gulp.task('package', gulp.series(async () => {
if (fs.existsSync('./images')) dirs.push('./images/**');
if (fs.existsSync('./slides')) dirs.push('./slides/**');

return gulp.src( dirs, { base: './' } )
return gulp.src( dirs, { base: './', encoding: false } )
.pipe(zip('reveal-js-presentation.zip')).pipe(gulp.dest('./'))

}))
Expand Down

0 comments on commit a6417ae

Please sign in to comment.