Redirect to gitea instead of using static install script

This commit is contained in:
2023-08-09 19:49:57 -07:00
parent 42b2e55994
commit 48e228adad
2 changed files with 5 additions and 82 deletions

View File

@@ -0,0 +1,5 @@
import { redirect } from '@sveltejs/kit';
export function load() {
throw redirect(302, 'https://gitea.elara.ws/Elara6331/lure/raw/branch/master/scripts/install.sh');
}