diff options
Diffstat (limited to 'vendor/github.com/sirupsen/logrus/terminal_check_solaris.go')
-rw-r--r-- | vendor/github.com/sirupsen/logrus/terminal_check_solaris.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/vendor/github.com/sirupsen/logrus/terminal_check_solaris.go b/vendor/github.com/sirupsen/logrus/terminal_check_solaris.go deleted file mode 100644 index f6710b3..0000000 --- a/vendor/github.com/sirupsen/logrus/terminal_check_solaris.go +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | package logrus | ||
2 | |||
3 | import ( | ||
4 | "golang.org/x/sys/unix" | ||
5 | ) | ||
6 | |||
7 | // IsTerminal returns true if the given file descriptor is a terminal. | ||
8 | func isTerminal(fd int) bool { | ||
9 | _, err := unix.IoctlGetTermio(fd, unix.TCGETA) | ||
10 | return err == nil | ||
11 | } | ||