Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/817f48448c698c72c32090708e14c2e6bfcd548b/gulp/clean.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/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);
});