1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-09 11:01:40 +00:00
Files
rke/vendor/github.com/mattn/go-isatty/isatty_others.go
MaiWJ f69628f41a Update vendor
(+) github.com/mattn/go-colorable
2018-11-29 18:56:35 -08:00

11 lines
250 B
Go

// +build !windows
// +build !appengine
package isatty
// 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
}