From 2c4455b12aca82ccd29c05c1750c25430867e545 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Thu, 16 Feb 2017 13:21:11 +0100 Subject: vendor: update dependencies with github.com/kardianos/govendor --- vendor/github.com/mattn/go-isatty/isatty_not_windows.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 vendor/github.com/mattn/go-isatty/isatty_not_windows.go (limited to 'vendor/github.com/mattn/go-isatty/isatty_not_windows.go') 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 +} -- cgit