We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3853e9 commit 7d99f7dCopy full SHA for 7d99f7d
cmd/utils/cmd.go
@@ -63,8 +63,8 @@ var ErrImportInterrupted = errors.New("interrupted")
63
// is redirected to a different file.
64
func Fatalf(format string, args ...interface{}) {
65
w := io.MultiWriter(os.Stdout, os.Stderr)
66
- if runtime.GOOS == "windows" {
67
- // The SameFile check below doesn't work on Windows.
+ if runtime.GOOS == "windows" || runtime.GOOS == "openbsd" {
+ // The SameFile check below doesn't work on Windows neither OpenBSD.
68
// stdout is unlikely to get redirected though, so just print there.
69
w = os.Stdout
70
} else {
0 commit comments