forked from mystiq/dex
076cd77469
Signed-off-by: Stephan Renatus <srenatus@chef.io>
13 lines
214 B
Go
13 lines
214 B
Go
// +build linux aix
|
|
|
|
package logrus
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
const ioctlReadTermios = unix.TCGETS
|
|
|
|
func isTerminal(fd int) bool {
|
|
_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
|
|
return err == nil
|
|
}
|
|
|