-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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: 'go list -m' should not require go.sum with -versions or when all args are version queries #41297
Comments
@jayconrod, Is this an up for grabs then? Because I'd like to try this one. |
@sibis Sure, feel free to take a look. I think it can mostly be done in |
I think |
Change https://golang.org/cl/309191 mentions this issue: |
Change https://golang.org/cl/265777 mentions this issue: |
For #36460 Updates #41297 Change-Id: I1b82176a45df499e52f1a3a0ffe23eab2a1ca86e Reviewed-on: https://go-review.googlesource.com/c/go/+/265777 Trust: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Michael Matloob <matloob@golang.org>
…ting specific modules For #36460 For #41297 Updates #29666 Change-Id: I5f324c0ef9a164f8043d2188101d141bb5fa7454 Reviewed-on: https://go-review.googlesource.com/c/go/+/309191 Trust: Bryan C. Mills <bcmills@google.com> Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Jay Conrod <jayconrod@google.com> Reviewed-by: Michael Matloob <matloob@golang.org>
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
What did you expect to see?
Both the
go list -m
commands above should succeed.What did you see instead?
Both commands fail. This happens because
go list -m
loads the build list before processing arguments.go.sum
is missing, so that fails.There's no need to load the build list for these commands. They both succeed when run outside a module or when
go.mod
contains no requirements.The text was updated successfully, but these errors were encountered: