also include protoc-gen-go in tools, locking version during bootstrap

This commit is contained in:
David Zhao
2021-06-03 09:36:41 -07:00
parent 69b94e1142
commit 474d7d7a54
2 changed files with 3 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ then
exit 1
fi
go mod download
go get -u github.com/twitchtv/twirp/protoc-gen-twirp
go get -u google.golang.org/protobuf/cmd/protoc-gen-go
go mod download

View File

@@ -5,4 +5,5 @@ package tools
import (
_ "github.com/maxbrunsfeld/counterfeiter/v6"
_ "github.com/twitchtv/twirp/protoc-gen-twirp"
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
)