From a37480c396487bb0c4710b7da10e1dfdaedc20ae Mon Sep 17 00:00:00 2001 From: Marko Date: Sun, 14 Jun 2020 21:41:25 +0200 Subject: [PATCH] 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 --- CONTRIBUTING.md | 2 +- tools.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a5bd1f543..10db28188 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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. 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 diff --git a/tools.mk b/tools.mk index de722ae89..6e1a61ca0 100644 --- a/tools.mk +++ b/tools.mk @@ -68,7 +68,7 @@ $(CERTSTRAP): protobuf: $(PROTOBUF) $(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 goodman: $(GOODMAN)