-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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
cmd/go: add -e flag to 'go get -u' #53737
Comments
This would make it easier to start an upgrade by running We do already have some logic in module-mode So I think this would probably boil down to suppressing a couple of calls to For such a low cost, this seems worth the usability benefit. |
This proposal has been added to the active column of the proposals project |
Based on the discussion above, this proposal seems like a likely accept. |
No change in consensus, so accepted. 🎉 |
A missing dependency currently blocks
go get -u
from working at all. For a concrete example, see #28424 (comment).go mod tidy
andgo mod vendor
have a-e
flag that means: "attempt to proceed despite errorsencountered while loading packages". I propose that we add an analogous
-e
flag togo get -u
.cc @bcmills
The text was updated successfully, but these errors were encountered: