1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-08 04:04:22 +02:00
lazygit/vendor/github.com/sirupsen/logrus/terminal_check_aix.go

10 lines
125 B
Go
Raw Normal View History

2019-08-26 16:53:38 +02:00
// +build !appengine,!js,!windows,aix
package logrus
import "io"
func checkIfTerminal(w io.Writer) bool {
return false
}