Skip to content

Commit 392a6d9

Browse files
fix(desktop): remove interactive shell flag from sidecar spawn to prevent hang on macOS (#15136)
Co-authored-by: kil-penguin <hyeonjun@gameduo.net>
1 parent c4ea11f commit 392a6d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/desktop/src-tauri/src

packages/desktop/src-tauri/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ pub fn spawn_command(
320320
};
321321

322322
let mut cmd = Command::new(shell);
323-
cmd.args(["-il", "-c", &line]);
323+
cmd.args(["-l", "-c", &line]);
324324

325325
for (key, value) in envs {
326326
cmd.env(key, value);

0 commit comments

Comments
 (0)