Skip to content

Commit

Permalink
Fix: Shell will pause after execution.
Browse files Browse the repository at this point in the history
  • Loading branch information
wychlw committed Sep 5, 2024
1 parent 9b6173f commit 56555f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/term/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ impl Shell {
log(format!("Spawn shell process: {}", shell));

let inner = Command::new("stdbuf")
.args(&["-oL", "-eL", shell, "-i"])
.args(&["-oL", "-eL", shell,])
.stdin(Stdio::piped())
.stdout(Stdio::piped())
.stderr(Stdio::piped())
Expand Down

0 comments on commit 56555f1

Please sign in to comment.