cmd/go: describe replacements in dependency modules in case of a build failure #42717
Labels
FeatureRequest
Issues asking for a new feature that does not need a proposal.
GoCommand
cmd/go
modules
NeedsDecision
Feedback is required from experts, contributors, and/or the community before a change can be made.
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?
As discussion in #39358,
replace
andexclude
directive will be ignored in modules except main module. However, we only get some simple error build info likebuild error in test.go:123:456
when running go command such asgo test
orgo build
if we forgot to addreplace
orexclude
directive ingo.mod
file of main module. These simple error build info is not enough to guide me to add what statement ingo.mod
file of main module. Meanwhile, these simple build error message does not hint to me that the problem is aboutreplace directive
missing, which will get worse if i am not familiar with some dependent modules.What did you expect to see?
Do more work to find which dependency introducing problems.
What did you see instead?
go command such as
go test
,go build
will show more detail message related inreplace directive
topic in situation thatreplace directive
missing in main module.The text was updated successfully, but these errors were encountered: