1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2025-01-27 22:30:08 +00:00
imgsrv/vendor/github.com/Sirupsen/logrus/terminal_check_notappengine.go
Vincent Batts 3c732c3b43
vendoring sources, for posterity sake
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2019-03-11 15:31:42 -04:00

19 lines
270 B
Go

// +build !appengine,!js,!windows,!aix
package logrus
import (
"io"
"os"
"golang.org/x/crypto/ssh/terminal"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
return terminal.IsTerminal(int(v.Fd()))
default:
return false
}
}