From ccaa982919d8a188cc8065e6db730ba9aa7055bb Mon Sep 17 00:00:00 2001 From: fumiama Date: Mon, 22 Nov 2021 22:16:53 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20build=20=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tea_1.16.go | 4 ++-- tea_1.16_pure.go | 4 ++-- tea_1.17.go | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tea_1.16.go b/tea_1.16.go index f7e6759..a289e55 100644 --- a/tea_1.16.go +++ b/tea_1.16.go @@ -1,5 +1,5 @@ -//go:build !go1.17 && amd64 -// +build !go1.17,amd64 +//go:build (!go1.17 && amd64) || !amd64 +// +build !go1.17,amd64 !amd64 package tea diff --git a/tea_1.16_pure.go b/tea_1.16_pure.go index 9956bd4..9046c06 100644 --- a/tea_1.16_pure.go +++ b/tea_1.16_pure.go @@ -1,5 +1,5 @@ -//go:build !go1.17 && !amd64 -// +build !go1.17,!amd64 +//go:build !go1.17 && !amd64 || !amd64 +// +build !go1.17,!amd64 !amd64 package tea diff --git a/tea_1.17.go b/tea_1.17.go index 528be14..bda57e4 100644 --- a/tea_1.17.go +++ b/tea_1.17.go @@ -1,5 +1,5 @@ -//go:build go1.17 -// +build go1.17 +//go:build go1.17 && amd64 +// +build go1.17,amd64 package tea