-
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: go mod why lies #31351
Comments
also, there doesn't seem to be an
the problem is that the go mod tool always tries to download, cache, and reference this repository, even though there appears to be no need for it. this is causing grief primarily because it requires specialized tools to download (bzr). |
|
@mirtchovski, the need for specialized tools will be mitigated by public module proxies. (And note that if
So it seems like this is, at best, a documentation issue. Did any particular document point you toward the use of |
I believe I missed the -m from go mod why. With that it tells me exactly what I wanted. You can close this. |
This has bitten me many times now, and I find it confusing. How do I know whether or not something in my go.mod file is a package or module? My primary use of Whether or not my dependency is a package or module, is confusing to me (and probably others), and I would argue that the |
@meling This issue is closed and is no longer tracked. If you want to propose a change or report a bug, please open a new issue. |
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?
At least some mention of the package "bson" anywhere in go mod's output.
What did you see instead?
Zero mention of the package "bson" anywhere in go mod's output.
The text was updated successfully, but these errors were encountered: