Skip to content

Commit 3cb64ea

Browse files
author
Bryan C. Mills
committed
cmd/go/internal/modload: emit correct module in duplication error
Updates #26904. Change-Id: If7f381c3f3a41bd62c5f8bcf4f92720badcaf5c6 Reviewed-on: https://go-review.googlesource.com/128878 Reviewed-by: Russ Cox <[email protected]>
1 parent 5b56053 commit 3cb64ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cmd/go/internal/modload/load.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func ImportPaths(args []string) []string {
140140
if prev, ok := firstPath[src]; !ok {
141141
firstPath[src] = mod.Path
142142
} else if prev != mod.Path {
143-
base.Errorf("go: %s@%s used for two different module paths (%s and %s)", mod.Path, mod.Version, prev, mod.Path)
143+
base.Errorf("go: %s@%s used for two different module paths (%s and %s)", src.Path, src.Version, prev, mod.Path)
144144
}
145145
}
146146
base.ExitIfErrors()

src/cmd/go/testdata/script/mod_replace.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ stdout 'Clear is better than clever.'
2020
# However, the same module can't be used as two different paths.
2121
go mod edit -dropreplace=rsc.io/quote/v3 -replace=not-rsc.io/quote/[email protected]=rsc.io/quote/[email protected] -require=not-rsc.io/quote/[email protected]
2222
! go build -o a4.exe .
23-
23+
stderr 'rsc.io/quote/[email protected] used for two different module paths \(not-rsc.io/quote/v3 and rsc.io/quote/v3\)'
2424

2525
-- go.mod --
2626
module quoter

0 commit comments

Comments
 (0)