-
Notifications
You must be signed in to change notification settings - Fork 7
fix(demo): correct protoc-gen-go installation instructions (fixes #59) #64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(demo): correct protoc-gen-go installation instructions (fixes #59) #64
Conversation
…aison#59) Clarify the distinction between protoc and protoc-gen-go installation: - protoc is the Protocol Buffer compiler - protoc-gen-go is the Go language plugin for protoc - Both are required for generating Go code from .proto files Updated both CCA and PSA demo documentation to provide clear, platform-specific installation instructions with troubleshooting guidance. Fixes veraison#59 Signed-off-by: 7908837174 <[email protected]>
eb2618d to
02ca03a
Compare
setrofim
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
Thanks @setrofim for the approval Kindly requesting a review from @yogeshbdeshpande as well. |
|
@7908837174 Have you tried on a clean machine the modified instructions to validate the flow for correctness..? |
yogeshbdeshpande
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Yes — the updated bash instructions were successfully tested on a clean Ubuntu system, confirming full toolchain setup, PATH resolution, and demo execution without inherited configs. |
|
Kindly requesting review from sir @yogeshbdeshpande for PR veraison/services#344 |
|
Big thanks to @setrofim and @yogeshbdeshpande for your thoughtful reviews and support on PR #64 .. |
|
Thanks to you @7908837174 for working hard on issues and fixing the same! |
Summary
Fixes the confusing protoc-gen-go build instructions identified in #59.
Problem
The original instructions incorrectly mixed protoc installation with protoc-gen-go plugin installation, referencing non-existent versions.
Solution
Files Modified
Testing
Closes #59