forked from hashicorp/vault
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch bootstrap (except CI) over to using pinned versions from go.mod (
- Loading branch information
Showing
4 changed files
with
61 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// +build tools | ||
|
||
// This file ensures tool dependencies are kept in sync. This is the | ||
// recommended way of doing this according to | ||
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module | ||
// To install the following tools at the version used by this repo run: | ||
// $ make bootstrap | ||
// or | ||
// $ go generate -tags tools tools/tools.go | ||
|
||
package tools | ||
|
||
// use this instead of google.golang.org/protobuf/cmd/protoc-gen-go since this supports grpc plugin while the other does not. | ||
// see https://github.com/golang/protobuf/releases#v1.4-generated-code and | ||
// https://github.com/protocolbuffers/protobuf-go/releases/tag/v1.20.0#v1.20-grpc-support | ||
//go:generate go install github.com/golang/protobuf/protoc-gen-go | ||
import _ "github.com/golang/protobuf/protoc-gen-go" | ||
|
||
//go:generate go install golang.org/x/tools/cmd/goimports | ||
import _ "golang.org/x/tools/cmd/goimports" | ||
|
||
//go:generate go install github.com/mitchellh/gox | ||
import _ "github.com/mitchellh/gox" | ||
|
||
//go:generate go install github.com/hashicorp/go-bindata | ||
import _ "github.com/hashicorp/go-bindata" | ||
|
||
//go:generate go install github.com/elazarl/go-bindata-assetfs | ||
import _ "github.com/elazarl/go-bindata-assetfs" | ||
|
||
//go:generate go install github.com/client9/misspell/cmd/misspell | ||
import _ "github.com/client9/misspell/cmd/misspell" |