distribution/vendor/github.com/sirupsen/logrus/terminal_check_js.go
Andreas Hassing 9466dd4e5a Update logrus to v1.6.0
Fixes #3223 by bumping logrus to v1.6.0, which in turn bumps
github.com/konsorten/go-windows-terminal-sequences to v1.0.3
wherein the fix to bad pointer is found.

Signed-off-by: Andreas Hassing <andreas@famhassing.dk>
2020-08-24 13:14:04 +02:00

7 lines
77 B
Go

// +build js
package logrus
func isTerminal(fd int) bool {
return false
}