1
0
mirror of https://github.com/rancher/steve.git synced 2025-08-31 23:20:56 +00:00
Files
steve/vendor/github.com/sirupsen/logrus/terminal_check_solaris.go
Darren Shepherd cc1e4e52a0 Update vendor
2020-02-21 22:19:07 -07:00

12 lines
224 B
Go

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
}