aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattn/go-isatty/isatty_appengine.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-17 20:23:14 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-17 20:23:14 +0200
commit1332a6ec0a00b2475bc2b7b35b4c61425361d6b6 (patch)
treeff9ee93ea4a3bafc99d049d4f0c7b9f199ff0fec /vendor/github.com/mattn/go-isatty/isatty_appengine.go
parent9e6c687fca71103fd7550e25c471b9f805337b09 (diff)
downloadgit-bug-1332a6ec0a00b2475bc2b7b35b4c61425361d6b6.tar.gz
ls: add some colors
Diffstat (limited to 'vendor/github.com/mattn/go-isatty/isatty_appengine.go')
-rw-r--r--vendor/github.com/mattn/go-isatty/isatty_appengine.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/mattn/go-isatty/isatty_appengine.go b/vendor/github.com/mattn/go-isatty/isatty_appengine.go
new file mode 100644
index 00000000..9584a988
--- /dev/null
+++ b/vendor/github.com/mattn/go-isatty/isatty_appengine.go
@@ -0,0 +1,15 @@
+// +build appengine
+
+package isatty
+
+// IsTerminal returns true if the file descriptor is terminal which
+// is always false on on appengine classic which is a sandboxed PaaS.
+func IsTerminal(fd uintptr) bool {
+ return false
+}
+
+// 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
+}