Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/blame/commit/dea58ed6635e5c5639d06c62fb60cbe9a19d38c9/gulp/stripBom.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Sonarr/gulp/stripBom.js

18 lines
457 B

var gulp = require('gulp');
var paths = require('./paths.js');
10 years ago
var stripbom = require('gulp-stripbom');
var stripBom = function (dest) {
10 years ago
gulp.src([paths.src.scripts, paths.src.exclude.libs])
10 years ago
.pipe(stripbom({ showLog: false }))
.pipe(gulp.dest(dest));
gulp.src(paths.src.templates)
10 years ago
.pipe(stripbom({ showLog: false }))
.pipe(gulp.dest(dest));
};
gulp.task('stripBom', function () {
stripBom(paths.src.root);
});