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

Commit

Permalink
status: adding counts to verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 committed Aug 18, 2017
1 parent 6ca8a48 commit 4d53b51
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/dep/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,8 @@ func runStatusAll(ctx *dep.Ctx, out outputter, p *dep.Project, sm gps.SourceMana

logger.Println("Checking upstream projects:")

for _, proj := range slp {
logger.Println(proj.Ident().ProjectRoot)
for i, proj := range slp {
logger.Printf("(%d/%d) %s\n", i+1, len(slp), proj.Ident().ProjectRoot)

bs := BasicStatus{
ProjectRoot: string(proj.Ident().ProjectRoot),
Expand Down Expand Up @@ -427,6 +427,7 @@ func runStatusAll(ctx *dep.Ctx, out outputter, p *dep.Project, sm gps.SourceMana

out.BasicLine(&bs)
}
logger.Println()
out.BasicFooter()

return digestMismatch, hasMissingPkgs, nil
Expand Down

0 comments on commit 4d53b51

Please sign in to comment.