From b19c87b5d64af502df0e93cd811ae9d7c2a2c27f Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Sun, 21 Sep 2025 21:42:15 -0700 Subject: [PATCH] try this --- nose/bin/apps.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nose/bin/apps.tsx b/nose/bin/apps.tsx index 6a16f8b..1c2c112 100644 --- a/nose/bin/apps.tsx +++ b/nose/bin/apps.tsx @@ -4,7 +4,7 @@ import { apps } from "@/webapp" const devMode = process.env.BUN_HOT export default async function () { - const hostname = await $`hostname`.quiet() + const { stdout: hostname } = await $`hostname`.quiet() let domain = devMode ? "localhost" : hostname.toString() if (!devMode && !domain.endsWith(".local")) domain += ".local"