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

dep: Skip tool conversions in dep status #1411

Merged
merged 1 commit into from
Nov 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/dep/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down