1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-09-23 11:00:00 +00:00
go-mtree/vendor/github.com/Sirupsen/logrus/terminal_solaris.go
Vincent Batts 50d22c5135 vendor: updating dependencies
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-06-24 14:45:05 -04:00

21 lines
352 B
Go

// +build solaris,!appengine
package logrus
import (
"io"
"os"
"golang.org/x/sys/unix"
)
// IsTerminal returns true if the given file descriptor is a terminal.
func IsTerminal(f io.Writer) bool {
switch v := f.(type) {
case *os.File:
_, err := unix.IoctlGetTermios(int(v.Fd()), unix.TCGETA)
return err == nil
default:
return false
}
}