-
Notifications
You must be signed in to change notification settings - Fork 10
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
remove vendor folder in repo - use dep instead #47
Comments
fixed it with the PR #48. |
Just curious, why would you use dep over official go 1.11 modules? (see: golang/dep#1959 (comment)) |
I agree this info (in the below-mentioned link) is old, but it is still valid: |
Right, but I'm not comparing dep to |
Are we using go mod here? 🤔 |
No |
Currently, the repo contains the vendor folder. Which need not be tracked by version control, as
Gopkg.toml
andGopkg.lock
files are used to track your dependencies. So please remove the vendor folder.The vendor folder will be created with the same version of dependencies as specified in
Gopkg.toml
, upon runningdep init
.The text was updated successfully, but these errors were encountered: