From 494c8a53516fb235499f048afb276b9d656c1c75 Mon Sep 17 00:00:00 2001 From: Hunter B Date: Thu, 4 Jun 2026 19:30:38 -0700 Subject: [PATCH] fix(tui): gate shell child kill helper off Windows --- crates/tui/src/tools/shell.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/tui/src/tools/shell.rs b/crates/tui/src/tools/shell.rs index 78c97333..c8eacca9 100644 --- a/crates/tui/src/tools/shell.rs +++ b/crates/tui/src/tools/shell.rs @@ -396,6 +396,7 @@ impl ShellChild { } } + #[cfg(not(windows))] fn kill(&mut self) -> std::io::Result<()> { match self { #[cfg(unix)]