diff options
| author | Roland Shoemaker <roland@golang.org> | 2023-06-20 10:54:58 -0700 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-06-20 18:28:47 +0000 |
| commit | 0d502d7cd64920c6d2cce3950ead89a5c4eb5e69 (patch) | |
| tree | e9cc1ff760cf36223724f81910728c63ff1480f8 | |
| parent | 0ff60057bbafb685e9f9a97af5261f484f8283d1 (diff) | |
| download | go-x-crypto-0d502d7cd64920c6d2cce3950ead89a5c4eb5e69.tar.xz | |
x509roots: use "generate" build tag
Since go generate sets it automatically.
Change-Id: I4623e523392140c0472b250ac99c8c3fa31e5b15
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/504595
Auto-Submit: Roland Shoemaker <roland@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Run-TryBot: Roland Shoemaker <roland@golang.org>
| -rw-r--r-- | x509roots/gen_fallback_bundle.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x509roots/gen_fallback_bundle.go b/x509roots/gen_fallback_bundle.go index 41fab36..c3e562f 100644 --- a/x509roots/gen_fallback_bundle.go +++ b/x509roots/gen_fallback_bundle.go @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build gen -// +build gen +//go:build generate +// +build generate //go:generate go run gen_fallback_bundle.go |
