-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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: internal error: duplicate loads of xxxxxxx #14444
Comments
Appears to have been introduced by https://golang.org/cl/18978. |
https://golang.org/cl/18978 introduced changes that fixed the errors appearing earlier then these, so it did not break anything. |
CL https://golang.org/cl/19899 mentions this issue. |
CL https://golang.org/cl/22040 mentions this issue. |
go get -u all command updates all packages including standard commands. We need to get commands evicted from their cache to avoid loading old versions of the packages evicted from the packages cache. Fixes #14444 Change-Id: Icd581a26e1db34ca634aba595fed62b097094c2f Reviewed-on: https://go-review.googlesource.com/19899 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Reviewed-on: https://go-review.googlesource.com/22040 Reviewed-by: Andrew Gerrand <adg@golang.org>
I use this command to update all my
GOPATH
:go get -v -d -u .../
(or replace ".../" by "all")It worked with Go 1.5 (and I don't remember to see any error with Go 1.6 beta/rc)
With Go 1.6, it prints this at the end:
The text was updated successfully, but these errors were encountered: