aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/cmd
diff options
context:
space:
mode:
authorArne Juul <arnej@yahooinc.com>2022-08-22 08:45:57 +0000
committerArne Juul <arnej@yahooinc.com>2022-08-22 08:45:57 +0000
commit4188e8e24603e150793b5764ac606e173d7a994c (patch)
tree9a8231b49e08e5da5bdde360764a0456114cf0ab /client/go/cmd
parent8937581f9c1578647329806601573085652b0932 (diff)
use conditional on windows instead
Diffstat (limited to 'client/go/cmd')
-rw-r--r--client/go/cmd/logfmt/tail_not_unix.go2
-rw-r--r--client/go/cmd/logfmt/tail_unix.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/go/cmd/logfmt/tail_not_unix.go b/client/go/cmd/logfmt/tail_not_unix.go
index bc5d7879804..7030572575d 100644
--- a/client/go/cmd/logfmt/tail_not_unix.go
+++ b/client/go/cmd/logfmt/tail_not_unix.go
@@ -2,7 +2,7 @@
// vespa logfmt command
// Author: mpolden
-//go:build !unix
+//go:build windows
package logfmt
diff --git a/client/go/cmd/logfmt/tail_unix.go b/client/go/cmd/logfmt/tail_unix.go
index f3d6a6f7bbe..7703844da48 100644
--- a/client/go/cmd/logfmt/tail_unix.go
+++ b/client/go/cmd/logfmt/tail_unix.go
@@ -2,7 +2,7 @@
// vespa logfmt command
// Author: arnej
-//go:build unix
+//go:build !windows
package logfmt