From 4d0b91947ef1bd77f05fd408ca834c6d9110297f Mon Sep 17 00:00:00 2001 From: Wei Fu Date: Thu, 29 Dec 2022 14:10:50 +0800 Subject: [PATCH] chore: delete // +build buildtag by `go fix` Signed-off-by: Wei Fu --- client/pkg/fileutil/dir_unix.go | 1 - client/pkg/fileutil/dir_windows.go | 1 - client/pkg/fileutil/lock_flock.go | 1 - client/pkg/fileutil/lock_linux.go | 1 - client/pkg/fileutil/lock_linux_test.go | 1 - client/pkg/fileutil/lock_solaris.go | 1 - client/pkg/fileutil/lock_unix.go | 1 - client/pkg/fileutil/lock_windows.go | 1 - client/pkg/fileutil/preallocate_darwin.go | 1 - client/pkg/fileutil/preallocate_unix.go | 1 - client/pkg/fileutil/preallocate_unsupported.go | 1 - client/pkg/fileutil/sync.go | 1 - client/pkg/fileutil/sync_darwin.go | 1 - client/pkg/fileutil/sync_linux.go | 1 - client/pkg/logutil/zap_journal.go | 1 - client/pkg/logutil/zap_journal_test.go | 1 - client/pkg/transport/sockopt_solaris.go | 1 - client/pkg/transport/sockopt_unix.go | 1 - client/pkg/transport/sockopt_windows.go | 1 - pkg/netutil/routes.go | 1 - pkg/netutil/routes_linux.go | 1 - pkg/netutil/routes_linux_test.go | 1 - pkg/osutil/interrupt_unix.go | 1 - pkg/osutil/interrupt_windows.go | 1 - pkg/osutil/signal.go | 1 - pkg/osutil/signal_linux.go | 1 - pkg/runtime/fds_other.go | 1 - server/embed/config_logging_journal_unix.go | 1 - server/embed/config_logging_journal_windows.go | 1 - server/storage/backend/config_default.go | 1 - server/storage/backend/config_windows.go | 1 - tests/common/e2e_test.go | 1 - tests/common/integration_test.go | 1 - tests/e2e/ctl_v3_auth_no_proxy_test.go | 1 - tests/e2e/ctl_v3_completion_test.go | 1 - tests/e2e/ctl_v3_grpc_test.go | 1 - tests/e2e/ctl_v3_watch_cov_test.go | 1 - tests/e2e/ctl_v3_watch_no_cov_test.go | 1 - tests/e2e/v3_cipher_suite_test.go | 1 - tests/e2e/zap_logging_test.go | 1 - tests/framework/e2e/cluster_direct.go | 1 - tests/framework/e2e/cluster_proxy.go | 1 - tests/framework/e2e/etcd_spawn_cov.go | 1 - tests/framework/e2e/etcd_spawn_nocov.go | 1 - tests/framework/integration/cluster_direct.go | 1 - tests/framework/integration/cluster_proxy.go | 1 - tests/integration/clientv3/connectivity/black_hole_test.go | 1 - .../integration/clientv3/connectivity/network_partition_test.go | 1 - tests/integration/clientv3/mirror_auth_test.go | 1 - tests/integration/clientv3/watch_fragment_test.go | 1 - tests/integration/embed/embed_proxy_test.go | 1 - tests/integration/embed/embed_test.go | 1 - tools/etcd-dump-metrics/install_darwin.go | 1 - tools/etcd-dump-metrics/install_linux.go | 1 - tools/etcd-dump-metrics/install_windows.go | 1 - tools/mod/libs.go | 1 - tools/mod/tools.go | 1 - 57 files changed, 57 deletions(-) diff --git a/client/pkg/fileutil/dir_unix.go b/client/pkg/fileutil/dir_unix.go index ca82f765c..add54c631 100644 --- a/client/pkg/fileutil/dir_unix.go +++ b/client/pkg/fileutil/dir_unix.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !windows -// +build !windows package fileutil diff --git a/client/pkg/fileutil/dir_windows.go b/client/pkg/fileutil/dir_windows.go index 849c63c87..fd3415d59 100644 --- a/client/pkg/fileutil/dir_windows.go +++ b/client/pkg/fileutil/dir_windows.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build windows -// +build windows package fileutil diff --git a/client/pkg/fileutil/lock_flock.go b/client/pkg/fileutil/lock_flock.go index dcdf226cd..a4e5707a6 100644 --- a/client/pkg/fileutil/lock_flock.go +++ b/client/pkg/fileutil/lock_flock.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !windows && !plan9 && !solaris -// +build !windows,!plan9,!solaris package fileutil diff --git a/client/pkg/fileutil/lock_linux.go b/client/pkg/fileutil/lock_linux.go index d8952cc48..c33a2f4af 100644 --- a/client/pkg/fileutil/lock_linux.go +++ b/client/pkg/fileutil/lock_linux.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build linux -// +build linux package fileutil diff --git a/client/pkg/fileutil/lock_linux_test.go b/client/pkg/fileutil/lock_linux_test.go index c1101c59c..65dd96b91 100644 --- a/client/pkg/fileutil/lock_linux_test.go +++ b/client/pkg/fileutil/lock_linux_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build linux -// +build linux package fileutil diff --git a/client/pkg/fileutil/lock_solaris.go b/client/pkg/fileutil/lock_solaris.go index 683cc1db9..2e892fecc 100644 --- a/client/pkg/fileutil/lock_solaris.go +++ b/client/pkg/fileutil/lock_solaris.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build solaris -// +build solaris package fileutil diff --git a/client/pkg/fileutil/lock_unix.go b/client/pkg/fileutil/lock_unix.go index d89027e1f..05db53674 100644 --- a/client/pkg/fileutil/lock_unix.go +++ b/client/pkg/fileutil/lock_unix.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !windows && !plan9 && !solaris && !linux -// +build !windows,!plan9,!solaris,!linux package fileutil diff --git a/client/pkg/fileutil/lock_windows.go b/client/pkg/fileutil/lock_windows.go index eb65029c4..51010bdf8 100644 --- a/client/pkg/fileutil/lock_windows.go +++ b/client/pkg/fileutil/lock_windows.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build windows -// +build windows package fileutil diff --git a/client/pkg/fileutil/preallocate_darwin.go b/client/pkg/fileutil/preallocate_darwin.go index caab143dd..e74968d03 100644 --- a/client/pkg/fileutil/preallocate_darwin.go +++ b/client/pkg/fileutil/preallocate_darwin.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build darwin -// +build darwin package fileutil diff --git a/client/pkg/fileutil/preallocate_unix.go b/client/pkg/fileutil/preallocate_unix.go index ebb8207c3..b02070b30 100644 --- a/client/pkg/fileutil/preallocate_unix.go +++ b/client/pkg/fileutil/preallocate_unix.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build linux -// +build linux package fileutil diff --git a/client/pkg/fileutil/preallocate_unsupported.go b/client/pkg/fileutil/preallocate_unsupported.go index 2c46dd490..e7fd937a4 100644 --- a/client/pkg/fileutil/preallocate_unsupported.go +++ b/client/pkg/fileutil/preallocate_unsupported.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !linux && !darwin -// +build !linux,!darwin package fileutil diff --git a/client/pkg/fileutil/sync.go b/client/pkg/fileutil/sync.go index 0a0855309..670d01fad 100644 --- a/client/pkg/fileutil/sync.go +++ b/client/pkg/fileutil/sync.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !linux && !darwin -// +build !linux,!darwin package fileutil diff --git a/client/pkg/fileutil/sync_darwin.go b/client/pkg/fileutil/sync_darwin.go index 1923b276e..7affa78ea 100644 --- a/client/pkg/fileutil/sync_darwin.go +++ b/client/pkg/fileutil/sync_darwin.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build darwin -// +build darwin package fileutil diff --git a/client/pkg/fileutil/sync_linux.go b/client/pkg/fileutil/sync_linux.go index b9398c23f..a3172382e 100644 --- a/client/pkg/fileutil/sync_linux.go +++ b/client/pkg/fileutil/sync_linux.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build linux -// +build linux package fileutil diff --git a/client/pkg/logutil/zap_journal.go b/client/pkg/logutil/zap_journal.go index 9daa3e0aa..c6adc0103 100644 --- a/client/pkg/logutil/zap_journal.go +++ b/client/pkg/logutil/zap_journal.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !windows -// +build !windows package logutil diff --git a/client/pkg/logutil/zap_journal_test.go b/client/pkg/logutil/zap_journal_test.go index 292c1440e..be5efd5d3 100644 --- a/client/pkg/logutil/zap_journal_test.go +++ b/client/pkg/logutil/zap_journal_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !windows -// +build !windows package logutil diff --git a/client/pkg/transport/sockopt_solaris.go b/client/pkg/transport/sockopt_solaris.go index e20f6366f..149ad5102 100644 --- a/client/pkg/transport/sockopt_solaris.go +++ b/client/pkg/transport/sockopt_solaris.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build solaris -// +build solaris package transport diff --git a/client/pkg/transport/sockopt_unix.go b/client/pkg/transport/sockopt_unix.go index e2cc6f482..4e76bf95b 100644 --- a/client/pkg/transport/sockopt_unix.go +++ b/client/pkg/transport/sockopt_unix.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !windows && !solaris -// +build !windows,!solaris package transport diff --git a/client/pkg/transport/sockopt_windows.go b/client/pkg/transport/sockopt_windows.go index 4878e4b62..2670b4dc7 100644 --- a/client/pkg/transport/sockopt_windows.go +++ b/client/pkg/transport/sockopt_windows.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build windows -// +build windows package transport diff --git a/pkg/netutil/routes.go b/pkg/netutil/routes.go index f66719ea1..a7d67df3d 100644 --- a/pkg/netutil/routes.go +++ b/pkg/netutil/routes.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !linux -// +build !linux package netutil diff --git a/pkg/netutil/routes_linux.go b/pkg/netutil/routes_linux.go index 5f8bd0c48..163063550 100644 --- a/pkg/netutil/routes_linux.go +++ b/pkg/netutil/routes_linux.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build linux -// +build linux package netutil diff --git a/pkg/netutil/routes_linux_test.go b/pkg/netutil/routes_linux_test.go index 2d0dade6a..a0056e990 100644 --- a/pkg/netutil/routes_linux_test.go +++ b/pkg/netutil/routes_linux_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build linux -// +build linux package netutil diff --git a/pkg/osutil/interrupt_unix.go b/pkg/osutil/interrupt_unix.go index b87618996..ec9dc7b67 100644 --- a/pkg/osutil/interrupt_unix.go +++ b/pkg/osutil/interrupt_unix.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !windows && !plan9 -// +build !windows,!plan9 package osutil diff --git a/pkg/osutil/interrupt_windows.go b/pkg/osutil/interrupt_windows.go index 7572690d2..a4c82b99e 100644 --- a/pkg/osutil/interrupt_windows.go +++ b/pkg/osutil/interrupt_windows.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build windows -// +build windows package osutil diff --git a/pkg/osutil/signal.go b/pkg/osutil/signal.go index c324ea16e..0e42b9c35 100644 --- a/pkg/osutil/signal.go +++ b/pkg/osutil/signal.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !linux || cov -// +build !linux cov package osutil diff --git a/pkg/osutil/signal_linux.go b/pkg/osutil/signal_linux.go index 93e0f3508..766ed26f3 100644 --- a/pkg/osutil/signal_linux.go +++ b/pkg/osutil/signal_linux.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build linux && !cov -// +build linux,!cov package osutil diff --git a/pkg/runtime/fds_other.go b/pkg/runtime/fds_other.go index 034f3d426..2311bb197 100644 --- a/pkg/runtime/fds_other.go +++ b/pkg/runtime/fds_other.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !linux -// +build !linux package runtime diff --git a/server/embed/config_logging_journal_unix.go b/server/embed/config_logging_journal_unix.go index 76bb73265..75d83ff2b 100644 --- a/server/embed/config_logging_journal_unix.go +++ b/server/embed/config_logging_journal_unix.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !windows -// +build !windows package embed diff --git a/server/embed/config_logging_journal_windows.go b/server/embed/config_logging_journal_windows.go index 58ed08631..90dfad944 100644 --- a/server/embed/config_logging_journal_windows.go +++ b/server/embed/config_logging_journal_windows.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build windows -// +build windows package embed diff --git a/server/storage/backend/config_default.go b/server/storage/backend/config_default.go index 847bd10fd..fd57c7ca8 100644 --- a/server/storage/backend/config_default.go +++ b/server/storage/backend/config_default.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !linux && !windows -// +build !linux,!windows package backend diff --git a/server/storage/backend/config_windows.go b/server/storage/backend/config_windows.go index ba6e5a128..7bb42f3a2 100644 --- a/server/storage/backend/config_windows.go +++ b/server/storage/backend/config_windows.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build windows -// +build windows package backend diff --git a/tests/common/e2e_test.go b/tests/common/e2e_test.go index 217c5c4fa..fd82064ae 100644 --- a/tests/common/e2e_test.go +++ b/tests/common/e2e_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build e2e -// +build e2e package common diff --git a/tests/common/integration_test.go b/tests/common/integration_test.go index c69ade5f6..9bd686b89 100644 --- a/tests/common/integration_test.go +++ b/tests/common/integration_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build integration -// +build integration package common diff --git a/tests/e2e/ctl_v3_auth_no_proxy_test.go b/tests/e2e/ctl_v3_auth_no_proxy_test.go index 10eb6acb1..530f24f6c 100644 --- a/tests/e2e/ctl_v3_auth_no_proxy_test.go +++ b/tests/e2e/ctl_v3_auth_no_proxy_test.go @@ -15,7 +15,6 @@ // These tests depend on certificate-based authentication that is NOT supported // by gRPC proxy. //go:build !cluster_proxy -// +build !cluster_proxy package e2e diff --git a/tests/e2e/ctl_v3_completion_test.go b/tests/e2e/ctl_v3_completion_test.go index fe41eb768..0981c69ac 100644 --- a/tests/e2e/ctl_v3_completion_test.go +++ b/tests/e2e/ctl_v3_completion_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cov -// +build !cov package e2e diff --git a/tests/e2e/ctl_v3_grpc_test.go b/tests/e2e/ctl_v3_grpc_test.go index 48a710b48..e2f5c563c 100644 --- a/tests/e2e/ctl_v3_grpc_test.go +++ b/tests/e2e/ctl_v3_grpc_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cluster_proxy -// +build !cluster_proxy package e2e diff --git a/tests/e2e/ctl_v3_watch_cov_test.go b/tests/e2e/ctl_v3_watch_cov_test.go index f0c77700b..0e17b9566 100644 --- a/tests/e2e/ctl_v3_watch_cov_test.go +++ b/tests/e2e/ctl_v3_watch_cov_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build cov -// +build cov package e2e diff --git a/tests/e2e/ctl_v3_watch_no_cov_test.go b/tests/e2e/ctl_v3_watch_no_cov_test.go index a755b5f2d..300a83cfa 100644 --- a/tests/e2e/ctl_v3_watch_no_cov_test.go +++ b/tests/e2e/ctl_v3_watch_no_cov_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cov -// +build !cov package e2e diff --git a/tests/e2e/v3_cipher_suite_test.go b/tests/e2e/v3_cipher_suite_test.go index 7c6b106b5..38973fbe0 100644 --- a/tests/e2e/v3_cipher_suite_test.go +++ b/tests/e2e/v3_cipher_suite_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cov && !cluster_proxy -// +build !cov,!cluster_proxy package e2e diff --git a/tests/e2e/zap_logging_test.go b/tests/e2e/zap_logging_test.go index 7ef90d292..4b7399c75 100644 --- a/tests/e2e/zap_logging_test.go +++ b/tests/e2e/zap_logging_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cov -// +build !cov package e2e diff --git a/tests/framework/e2e/cluster_direct.go b/tests/framework/e2e/cluster_direct.go index c773dbe0f..ac659bd6b 100644 --- a/tests/framework/e2e/cluster_direct.go +++ b/tests/framework/e2e/cluster_direct.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cluster_proxy -// +build !cluster_proxy package e2e diff --git a/tests/framework/e2e/cluster_proxy.go b/tests/framework/e2e/cluster_proxy.go index e6174824d..53b710c51 100644 --- a/tests/framework/e2e/cluster_proxy.go +++ b/tests/framework/e2e/cluster_proxy.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build cluster_proxy -// +build cluster_proxy package e2e diff --git a/tests/framework/e2e/etcd_spawn_cov.go b/tests/framework/e2e/etcd_spawn_cov.go index 349391092..05f4c0068 100644 --- a/tests/framework/e2e/etcd_spawn_cov.go +++ b/tests/framework/e2e/etcd_spawn_cov.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build cov -// +build cov package e2e diff --git a/tests/framework/e2e/etcd_spawn_nocov.go b/tests/framework/e2e/etcd_spawn_nocov.go index 3f16e3887..62b4ff6c8 100644 --- a/tests/framework/e2e/etcd_spawn_nocov.go +++ b/tests/framework/e2e/etcd_spawn_nocov.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cov -// +build !cov package e2e diff --git a/tests/framework/integration/cluster_direct.go b/tests/framework/integration/cluster_direct.go index 26994b46f..3bd8e5a5b 100644 --- a/tests/framework/integration/cluster_direct.go +++ b/tests/framework/integration/cluster_direct.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cluster_proxy -// +build !cluster_proxy package integration diff --git a/tests/framework/integration/cluster_proxy.go b/tests/framework/integration/cluster_proxy.go index cec48cea5..a70499070 100644 --- a/tests/framework/integration/cluster_proxy.go +++ b/tests/framework/integration/cluster_proxy.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build cluster_proxy -// +build cluster_proxy package integration diff --git a/tests/integration/clientv3/connectivity/black_hole_test.go b/tests/integration/clientv3/connectivity/black_hole_test.go index b0771d764..0a9ad3318 100644 --- a/tests/integration/clientv3/connectivity/black_hole_test.go +++ b/tests/integration/clientv3/connectivity/black_hole_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cluster_proxy -// +build !cluster_proxy package connectivity_test diff --git a/tests/integration/clientv3/connectivity/network_partition_test.go b/tests/integration/clientv3/connectivity/network_partition_test.go index 83acf7472..5b9cc602e 100644 --- a/tests/integration/clientv3/connectivity/network_partition_test.go +++ b/tests/integration/clientv3/connectivity/network_partition_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cluster_proxy -// +build !cluster_proxy package connectivity_test diff --git a/tests/integration/clientv3/mirror_auth_test.go b/tests/integration/clientv3/mirror_auth_test.go index 29657874c..dd8ae59d8 100644 --- a/tests/integration/clientv3/mirror_auth_test.go +++ b/tests/integration/clientv3/mirror_auth_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cluster_proxy -// +build !cluster_proxy package clientv3test diff --git a/tests/integration/clientv3/watch_fragment_test.go b/tests/integration/clientv3/watch_fragment_test.go index 3c9f63627..81450f5f9 100644 --- a/tests/integration/clientv3/watch_fragment_test.go +++ b/tests/integration/clientv3/watch_fragment_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cluster_proxy -// +build !cluster_proxy package clientv3test diff --git a/tests/integration/embed/embed_proxy_test.go b/tests/integration/embed/embed_proxy_test.go index 43a80dd1f..50f2a175f 100644 --- a/tests/integration/embed/embed_proxy_test.go +++ b/tests/integration/embed/embed_proxy_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build cluster_proxy -// +build cluster_proxy // The purpose of this (empty) package is too keep following test working: // # go test -tags=cluster_proxy ./integration/embed diff --git a/tests/integration/embed/embed_test.go b/tests/integration/embed/embed_test.go index 7b5cef98c..f018e74ad 100644 --- a/tests/integration/embed/embed_test.go +++ b/tests/integration/embed/embed_test.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build !cluster_proxy -// +build !cluster_proxy // Keep the test in a separate package from other tests such that // .setupLogging method does not race with other (previously running) servers (grpclog is global). diff --git a/tools/etcd-dump-metrics/install_darwin.go b/tools/etcd-dump-metrics/install_darwin.go index e4ef95220..8f30fb652 100644 --- a/tools/etcd-dump-metrics/install_darwin.go +++ b/tools/etcd-dump-metrics/install_darwin.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build darwin -// +build darwin package main diff --git a/tools/etcd-dump-metrics/install_linux.go b/tools/etcd-dump-metrics/install_linux.go index 2fe400501..c2a2bfa03 100644 --- a/tools/etcd-dump-metrics/install_linux.go +++ b/tools/etcd-dump-metrics/install_linux.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build linux -// +build linux package main diff --git a/tools/etcd-dump-metrics/install_windows.go b/tools/etcd-dump-metrics/install_windows.go index 07eb15b32..71873a80b 100644 --- a/tools/etcd-dump-metrics/install_windows.go +++ b/tools/etcd-dump-metrics/install_windows.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build windows -// +build windows package main diff --git a/tools/mod/libs.go b/tools/mod/libs.go index 1a1191f93..48d537e2d 100644 --- a/tools/mod/libs.go +++ b/tools/mod/libs.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build libs -// +build libs // This file implements that pattern: // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module diff --git a/tools/mod/tools.go b/tools/mod/tools.go index 61f54b50c..5a7e375d1 100644 --- a/tools/mod/tools.go +++ b/tools/mod/tools.go @@ -13,7 +13,6 @@ // limitations under the License. //go:build tools -// +build tools // This file implements that pattern: // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module