1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-21 21:47:32 +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 08:34:31 +10: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 08:34:31 +10:00
default:
return false
}
}