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/6e8480d7cb47c05d8eee23e8031b555fc13c1dc3/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);
});