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

Commit

Permalink
Merge pull request #1037 from jmank88/verbose_status
Browse files Browse the repository at this point in the history
status: adding counts to verbose output
  • Loading branch information
jmank88 authored Aug 21, 2017
2 parents d895a66 + 4d53b51 commit edc545f
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 edc545f

Please sign in to comment.