fix(desktop): remove interactive shell flag from sidecar spawn to prevent hang on macOS (#15136)

Co-authored-by: kil-penguin <hyeonjun@gameduo.net>
This commit is contained in:
kil-penguin
2026-02-26 15:02:40 +09:00
committed by GitHub
parent c4ea11fef3
commit 392a6d993f

View File

@@ -320,7 +320,7 @@ pub fn spawn_command(
};
let mut cmd = Command::new(shell);
cmd.args(["-il", "-c", &line]);
cmd.args(["-l", "-c", &line]);
for (key, value) in envs {
cmd.env(key, value);