Files
logrus/terminal_check_wasip1.go
T
Flavio Castelli 7165f5e779 Add WASI wasip1 support
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>
2023-05-31 19:17:20 +02:00

9 lines
99 B
Go

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