Fix dependencies

This commit is contained in:
2020-03-01 17:06:34 +01:00
parent fee4454c12
commit 6c9b3f3e5c
921 changed files with 329221 additions and 13 deletions

View File

@ -0,0 +1,13 @@
// +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
}