mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-19 16:40:48 +00:00
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:
parent
c4ea11fef3
commit
392a6d993f
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue