-
Silly question, but I am trying to make a contribution which involves changing a .proto file. I am continuously running into protoc compilation issues related to imports in the .proto files. Is there a standard method which generates all the go code from proto files. "go build" doesn't seem to do so. (PS: I am building on windows) |
Beta Was this translation helpful? Give feedback.
Answered by
pstibrany
Aug 26, 2021
Replies: 1 comment
-
Typically we use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
srijan55
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Typically we use
make protos
to do this. This step uses build image running under Docker. You may want to fetch (instead of building) the build image by runningmake fetch-build-image
first.