mirror of
https://github.com/golang/go
synced 2024-11-12 07:10:22 -07:00
cmd/go: prevent packages from being cleaned more than once
If a package was listed as a dependency from multiple places, it could have been cleaned repeatedly. R=golang-dev, dave, rsc, seed, bradfitz CC=golang-dev, minux.ma https://golang.org/cl/7482043
This commit is contained in:
parent
174a17e3c6
commit
79a0c17012
@ -106,6 +106,8 @@ func clean(p *Package) {
|
||||
if cleaned[p] {
|
||||
return
|
||||
}
|
||||
cleaned[p] = true
|
||||
|
||||
if p.Dir == "" {
|
||||
errorf("can't load package: %v", p.Error)
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user