1
0
Fork 0
mirror of https://github.com/Luzifer/waitfor.git synced 2024-10-18 13:24:23 +00:00
waitfor/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go

20 lines
265 B
Go
Raw Permalink Normal View History

// +build !appengine,!js,!windows
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
}
}