Update CONTRIBUTING.md#32
Update CONTRIBUTING.md#32alexmt merged 4 commits intoargoproj:masterfrom merenbach:update-contributing
Conversation
|
Nice catch @merenbach ! Looks like we forgot to add 'errgroup' dependency. Can you please add Following command should regenerate both Gopkg.toml and Gopkg.lock : |
|
@alexmt Thank you for the update! When I run that command, I tried running (The message ends with a comma, oddly.) This comment on a tangentially related |
|
LGTM |
Summary
Fix a tiny typo and ensure that
errgroupis installed.Problem
When trying to run
makefor the first time, the following error appears on my machine:Solution
errgroupis required by https://github.com/gobuffalo/packr, which is installed withinstall/install.go. For some reason this is not recursively installed withdep ensure. Adding it toinstall/install.gohad the effect of ensuring it would be installed withdep ensure, but thenmakeerrors out with an imported-but-not-used error since this then constitutes a direct import.This looks like a simple missing library, so I've added
errgroupto the list of prerequisites in the README. @alexmt Please let me know if I may refactor this.