Skip to content

Commit

Permalink
Setting gulp encoding to false when copying binary files
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Jun 30, 2024
1 parent 8f66486 commit b9ca3be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ gulp.task(
);

gulp.task('build:png', () =>
gulp.src(['src/png/icon.png']).pipe(gulp.dest('dist/admin/'))
gulp
.src(['src/png/icon.png'], { encoding: false })
.pipe(gulp.dest('dist/admin/'))
);

gulp.task('build:txt', () =>
Expand Down

0 comments on commit b9ca3be

Please sign in to comment.