Skip to content

Commit e250d35

Browse files
committed
go/packages: fix the build
Broken by CL 168657 Change-Id: I359d53c13eb470a5d95440d89b0cca3616b94f00 Reviewed-on: https://go-review.googlesource.com/c/tools/+/168798 Run-TryBot: Brad Fitzpatrick <[email protected]> Reviewed-by: Ian Cottrell <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent a94d7df commit e250d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/packages/golist.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ func golistDriverCurrent(cfg *Config, words ...string) (*driverResponse, error)
587587

588588
if old, found := seen[p.ImportPath]; found {
589589
if !reflect.DeepEqual(p, old) {
590-
return nil, fmt.Errorf("internal error: go list gives conflicting information for package ", p.ImportPath)
590+
return nil, fmt.Errorf("internal error: go list gives conflicting information for package %v", p.ImportPath)
591591
}
592592
// skip the duplicate
593593
continue

0 commit comments

Comments
 (0)