ingress-nginx-helm/vendor/github.com/Sirupsen/logrus/terminal_check_windows.go
Manuel Alejandro de Brito Fontes 6c33bee8fd
Update go dependencies
2018-10-10 21:46:45 -03:00

20 lines
297 B
Go

// +build !appengine,!js,windows
package logrus
import (
"io"
"os"
"syscall"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
var mode uint32
err := syscall.GetConsoleMode(syscall.Handle(v.Fd()), &mode)
return err == nil
default:
return false
}
}