mirror of
https://github.com/jellyfin/jellyfin-tizen.git
synced 2024-11-23 05:49:52 +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
|
// Copy unmodified assets
|
||||||
function copy() {
|
function copy() {
|
||||||
return gulp.src(paths.assets.src)
|
return gulp.src(paths.assets.src, { encoding: false })
|
||||||
.pipe(gulp.dest(paths.assets.dest));
|
.pipe(gulp.dest(paths.assets.dest));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user