feat(FN-5189): complete Step 3 — migrate supervised spawns

Fusion-Task-Id: FN-5189
Fusion-Task-Lineage: 4caa3f0a-af81-4c60-88e8-de229ed72e08
This commit is contained in:
Fusion (runfusion.ai)
2026-05-19 15:33:27 -07:00
committed by gsxdsm
parent 87ea63c7c3
commit 818db4a714
8 changed files with 33 additions and 38 deletions

View File

@@ -33,6 +33,7 @@ function openInBrowser(url: string): void {
args = [url];
}
try {
// process-supervisor-allowlist: user-facing browser opener must outlive the TUI process
const child = spawn(cmd, args, { detached: true, stdio: "ignore" });
child.unref();
} catch {