diff options
| -rw-r--r-- | doStats.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -31,6 +31,12 @@ func doStats() (string, error) { return "no repo", errors.New("working dir isn't a repo I know about") } + if argv.Verify.Stats.List { + s := repo.Stats() + footer := s.PrintTable() + return "stats table: " + footer, nil + } + s, err := doStatsRepo(repo) allerr = errors.Join(allerr, err) |
