From 44eb69561a32c1b1e5345b5872e7de69fff936c2 Mon Sep 17 00:00:00 2001 From: HackyMiner Date: Sat, 29 Sep 2018 23:15:39 +0900 Subject: internal/debug: support color terminal for cygwin/msys2 (#17740) - update go-colorable, go-isatty, go-runewidth packages - use go-isatty instead of log/term and remove log/term package --- vendor/github.com/mattn/go-isatty/isatty_solaris.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'vendor/github.com/mattn/go-isatty/isatty_solaris.go') diff --git a/vendor/github.com/mattn/go-isatty/isatty_solaris.go b/vendor/github.com/mattn/go-isatty/isatty_solaris.go index 1f0c6bf53..bdd5c79a0 100644 --- a/vendor/github.com/mattn/go-isatty/isatty_solaris.go +++ b/vendor/github.com/mattn/go-isatty/isatty_solaris.go @@ -14,3 +14,9 @@ func IsTerminal(fd uintptr) bool { err := unix.IoctlSetTermio(int(fd), unix.TCGETA, &termio) return err == nil } + +// IsCygwinTerminal return true if the file descriptor is a cygwin or msys2 +// terminal. This is also always false on this environment. +func IsCygwinTerminal(fd uintptr) bool { + return false +} -- cgit