7165f5e779
Fix building when the new `wasip1` port is being used. This is a new target that will be introduced by go 1.21. For more details https://github.com/golang/go/issues/58141 Signed-off-by: Flavio Castelli <fcastelli@suse.com>
9 lines
99 B
Go
9 lines
99 B
Go
//go:build wasip1
|
|
// +build wasip1
|
|
|
|
package logrus
|
|
|
|
func isTerminal(fd int) bool {
|
|
return false
|
|
}
|