diff --git a/pkg/commands/exec_live_default.go b/pkg/commands/exec_live_default.go index 839575d02..0e43a6741 100644 --- a/pkg/commands/exec_live_default.go +++ b/pkg/commands/exec_live_default.go @@ -10,7 +10,7 @@ import ( "github.com/go-errors/errors" - "github.com/jesseduffield/pty" + "github.com/creack/pty" ) // RunCommandWithOutputLiveWrapper runs a command and return every word that gets written in stdout diff --git a/pkg/gui/pty.go b/pkg/gui/pty.go index 39642b7f0..68cc3991f 100644 --- a/pkg/gui/pty.go +++ b/pkg/gui/pty.go @@ -5,7 +5,7 @@ package gui import ( "os/exec" - "github.com/jesseduffield/pty" + "github.com/creack/pty" ) func (gui *Gui) onResize() error {