1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go

18 lines
232 B
Go
Raw Normal View History

// +build !appengine,!js,!windows,!nacl,!plan9
2018-08-14 00:34:31 +02:00
package logrus
import (
"io"
"os"
)
func checkIfTerminal(w io.Writer) bool {
switch v := w.(type) {
case *os.File:
return isTerminal(int(v.Fd()))
2018-08-14 00:34:31 +02:00
default:
return false
}
}