samurai/vendor/github.com/sirupsen/logrus/terminal_check_unix.go

14 lines
214 B
Go
Raw Normal View History

2021-03-22 10:58:08 +01:00
// +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
}