From 71930def56a379af01ebfa4a00b05ae8653f9a5d Mon Sep 17 00:00:00 2001 From: Dylan Myers Date: Tue, 14 May 2024 08:22:06 -0400 Subject: [PATCH] Correct go build tags --- factories/exporters.go | 2 +- factories/processors.go | 2 ++ factories/processors_aix.go | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/factories/exporters.go b/factories/exporters.go index 80d3cc579..75ee2c845 100644 --- a/factories/exporters.go +++ b/factories/exporters.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build linux || darwin || windows +//go:build !aix package factories diff --git a/factories/processors.go b/factories/processors.go index 8a71bedda..9a70dbed9 100644 --- a/factories/processors.go +++ b/factories/processors.go @@ -12,6 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build !aix + package factories import ( diff --git a/factories/processors_aix.go b/factories/processors_aix.go index a77858ae3..9b64931f6 100644 --- a/factories/processors_aix.go +++ b/factories/processors_aix.go @@ -12,6 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. +//go:build aix + package factories import (