Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit dac3110

Browse files
committed
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`.
1 parent f2d75a0 commit dac3110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/dep/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ func collectConstraints(ctx *dep.Ctx, p *dep.Project, sm gps.SourceManager) cons
693693
ctx.Err.Println("Error getting direct deps:", err)
694694
}
695695
// Create a root analyzer.
696-
rootAnalyzer := newRootAnalyzer(false, ctx, directDeps, sm)
696+
rootAnalyzer := newRootAnalyzer(true, ctx, directDeps, sm)
697697

698698
// Iterate through the locked projects and collect constraints of all the projects.
699699
for _, proj := range p.Lock.Projects() {

0 commit comments

Comments
 (0)