From 59a7ddb0819596203bc53d41f329e50df597540b Mon Sep 17 00:00:00 2001 From: Liam Galvin Date: Mon, 13 Aug 2018 17:44:24 +0100 Subject: [PATCH] try to fix darwin pty --- pty/pty_darwin.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pty/pty_darwin.go b/pty/pty_darwin.go index 3a0f1f8..bdf1683 100644 --- a/pty/pty_darwin.go +++ b/pty/pty_darwin.go @@ -17,6 +17,7 @@ func open() (*os.File, *os.File, error) { } ptsName, err := ptsname(pty) + panic(ptsName) if err != nil { panic(err) }