From 63b070964944e5e1e14a18e548eafbab0fc4affc Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 10 Mar 2026 15:51:38 -0700 Subject: [PATCH] shout --- install/server.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/install/server.ts b/install/server.ts index 45db375..788ca35 100644 --- a/install/server.ts +++ b/install/server.ts @@ -10,6 +10,14 @@ Bun.serve({ headers: { "content-type": "text/plain" }, }) } + + if (new URL(req.url).pathname === "/shout") { + return Response.redirect( + "https://git.nose.space/defunkt/go-shout/raw/branch/main/install.sh", + 302 + ) + } + return new Response("404 Not Found", { status: 404 }) }, })