Fix solaris build

This commit is contained in:
David Bariod 2019-04-03 10:46:44 +02:00
parent 8bdbc7bcc0
commit c1b61542d7
1 changed files with 11 additions and 0 deletions

11
terminal_check_solaris.go Normal file
View File

@ -0,0 +1,11 @@
package logrus
import (
"golang.org/x/sys/unix"
)
// IsTerminal returns true if the given file descriptor is a terminal.
func isTerminal(fd int) bool {
_, err := unix.IoctlGetTermio(fd, unix.TCGETA)
return err == nil
}