1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-01 15:06:23 +00:00

Update vendor

(+) github.com/mattn/go-colorable
This commit is contained in:
MaiWJ
2018-09-26 17:15:49 +08:00
committed by Alena Prokharchyk
parent 5941368767
commit f69628f41a
19 changed files with 1438 additions and 0 deletions

10
vendor/github.com/mattn/go-isatty/isatty_others.go generated vendored Normal file
View File

@@ -0,0 +1,10 @@
// +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
}