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

9 lines
158 B

var gulp = require('gulp');
var del = require('del');
var paths = require('./paths');
gulp.task('clean', function(cb) {
del([paths.dest.root], cb);
});