diff --git a/internal/shell_executable/shell_executable.go b/internal/shell_executable/shell_executable.go index 14c676e..b77fcd9 100644 --- a/internal/shell_executable/shell_executable.go +++ b/internal/shell_executable/shell_executable.go @@ -81,6 +81,7 @@ func (b *ShellExecutable) Start(args ...string) error { readTimeout := 2000 * time.Millisecond if len(args) > 0 && args[0] == "setLongerReadTimeout" { readTimeout = 5000 * time.Millisecond + args = args[1:] } b.ptyReader = condition_reader.NewConditionReader(io.TeeReader(b.pty, b.vt), readTimeout)