mirror of
https://github.com/jellyfin/jellyfin-tizen.git
synced 2024-11-22 21:39:41 +00:00
Disable gulp.src encoding
`encoding: 'utf8'` combined with `removeBOM: true` corrupt non-text files.
This commit is contained in:
parent
81a0654536
commit
8b33f804d1
@ -57,7 +57,7 @@ function searchFonts() {
|
||||
|
||||
// Copy unmodified assets
|
||||
function copy() {
|
||||
return gulp.src(paths.assets.src)
|
||||
return gulp.src(paths.assets.src, { encoding: false })
|
||||
.pipe(gulp.dest(paths.assets.dest));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user