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/0ff5850a6147a0a3d03a202ebafc2ce2b2f8f24a/gulp/clean.js
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
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());
|
|
});
|