tools: update gogoproto get cmd (#5007)

## Description

Update gogoproto tools cmd to download the correct version. I still need to update the docker container and test that they generate the same

Closes: #XXX
This commit is contained in:
Marko
2020-06-14 21:41:25 +02:00
committed by GitHub
parent 206c814a8e
commit a37480c396
2 changed files with 2 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ For linting and checking breaking changes, we use [buf](https://buf.build/). If
There are two ways to generate your proto stubs. There are two ways to generate your proto stubs.
1. Use Docker, pull an image that will generate your proto stubs with no need to install anything. `make proto-gen-docker` 1. Use Docker, pull an image that will generate your proto stubs with no need to install anything. `make proto-gen-docker`
2. Run `make proto-gen` after installing `protoc` and gogoproto. 2. Run `make proto-gen` after installing `protoc` and gogoproto, you can do this by running `make protobuf`.
### Installation Instructions ### Installation Instructions

View File

@@ -68,7 +68,7 @@ $(CERTSTRAP):
protobuf: $(PROTOBUF) protobuf: $(PROTOBUF)
$(PROTOBUF): $(PROTOBUF):
@echo "Get GoGo Protobuf" @echo "Get GoGo Protobuf"
@go get github.com/gogo/protobuf/protoc-gen-gogo@v1.3.1 @go get github.com/gogo/protobuf/protoc-gen-gogofaster@v1.3.1
.PHONY: protobuf .PHONY: protobuf
goodman: $(GOODMAN) goodman: $(GOODMAN)