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:
sam boyer 2017-11-28 15:30:33 -05:00
Родитель f2d75a0060
Коммит dac3110a8a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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() {