зеркало из https://github.com/golang/dep.git
dep: Skip tool conversions in dep status
collectConstraints(), used by `dep status`, was trying to do on-the-fly conversions of existing tools. That needs to remain disabled until we also turn it on for `dep init` and `dep ensure`.
This commit is contained in:
Родитель
f2d75a0060
Коммит
dac3110a8a
|
@ -693,7 +693,7 @@ func collectConstraints(ctx *dep.Ctx, p *dep.Project, sm gps.SourceManager) cons
|
|||
ctx.Err.Println("Error getting direct deps:", err)
|
||||
}
|
||||
// Create a root analyzer.
|
||||
rootAnalyzer := newRootAnalyzer(false, ctx, directDeps, sm)
|
||||
rootAnalyzer := newRootAnalyzer(true, ctx, directDeps, sm)
|
||||
|
||||
// Iterate through the locked projects and collect constraints of all the projects.
|
||||
for _, proj := range p.Lock.Projects() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче