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

10 lines
210 B

var gulp = require('gulp');
var clean = require('gulp-clean');
var paths = require('./paths');
gulp.task('clean', function () {
return gulp.src(paths.dest.root, {read: false})
.pipe(clean());
});