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

22 lines
563 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.less)
.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);
});