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

Update gulpfile.js

pull/1350/head^2
Jamie 8 years ago committed by GitHub
parent c47db8a659
commit f3522920ab

@ -270,7 +270,7 @@ gulp.task('libs')
gulp.task('copy', ['lib', 'libcss', 'libfonts', 'libimages', 'npm', 'modules']);
gulp.task('compile', ['sass']);
gulp.task('build', callback => runSequence('copy', 'compile', callback));
gulp.task('full', callback => runSequence('clean', 'build', callback));
gulp.task('full', callback => runSequence('build', callback));
// Use this in a build server environment to compile and bundle everything
gulp.task('publish', callback => runSequence('fullvar', 'full', 'typescript', 'bundle', callback));
@ -279,4 +279,4 @@ gulp.task('publish', callback => runSequence('fullvar', 'full', 'typescript', 'b
gulp.task('watch', function () {
gulp.watch(paths.sass.src, ['sass']);
gulp.watch('./Styles/**/*.css', ['libcss']); // legacy css
});
});

Loading…
Cancel
Save