diff --git a/src/term/shell.rs b/src/term/shell.rs index 523073b..83ee122 100644 --- a/src/term/shell.rs +++ b/src/term/shell.rs @@ -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())