diff options
author | Felix Lange <fjl@twurst.com> | 2017-02-16 20:21:11 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2017-02-16 20:44:09 +0800 |
commit | 2c4455b12aca82ccd29c05c1750c25430867e545 (patch) | |
tree | 0beb8c96c7bf6a5a82434ed79218e822927434c3 /vendor/github.com/mattn/go-isatty/isatty_not_windows.go | |
parent | c8695fae359aa327da9203a57ffaf4f2d47d4370 (diff) | |
download | go-tangerine-2c4455b12aca82ccd29c05c1750c25430867e545.tar.gz go-tangerine-2c4455b12aca82ccd29c05c1750c25430867e545.tar.zst go-tangerine-2c4455b12aca82ccd29c05c1750c25430867e545.zip |
vendor: update dependencies with github.com/kardianos/govendor
Diffstat (limited to 'vendor/github.com/mattn/go-isatty/isatty_not_windows.go')
-rw-r--r-- | vendor/github.com/mattn/go-isatty/isatty_not_windows.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/mattn/go-isatty/isatty_not_windows.go b/vendor/github.com/mattn/go-isatty/isatty_not_windows.go new file mode 100644 index 000000000..616832d23 --- /dev/null +++ b/vendor/github.com/mattn/go-isatty/isatty_not_windows.go @@ -0,0 +1,9 @@ +// +build !windows 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 +} |