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