Browse Source

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
pull/5010/head
Marko 5 years ago
committed by GitHub
parent
commit
a37480c396
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      CONTRIBUTING.md
  2. +1
    -1
      tools.mk

+ 1
- 1
CONTRIBUTING.md 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


+ 1
- 1
tools.mk 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)


Loading…
Cancel
Save