1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-02-04 05:23:36 +00:00
restic/vendor/github.com/mattn/go-isatty/isatty_others.go
2018-04-22 11:37:05 +02:00

10 lines
252 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
}