cmd/go: go mod download -json
is incomplete
#29772
Labels
early-in-cycle
A change that should be done early in the 3 month dev cycle.
modules
NeedsFix
The path to resolution is known, but the work has not been done.
Milestone
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?
go mod download -json
./list
files as needed).What did you expect to see?
go build
,go mod download
should work without fetching anything.What did you see instead?
go build
andgo mod download
is getting 404 errors due to files missing from the bundle. It looks likego build
is trying to fetch:go.sum
files that aren't actually needed for the build (as far as I can tell, at least).I'd expect
go mod download -json
to return a list of every downloaded package.Context: I'm trying to integrate
go mod
with IPFS.Testing against: https://github.com/anacrolix/torrent/tree/ipgo
The text was updated successfully, but these errors were encountered: