From c831ad39c905d85f2b5a9d8bf2d7c3da5b8a6e71 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Wed, 25 Mar 2020 10:37:10 +0100 Subject: [PATCH] pkg: use upstream pty package --- pkg/commands/exec_live_default.go | 2 +- pkg/gui/pty.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {