diff options
| author | Jeff Carr <[email protected]> | 2025-10-16 14:03:46 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-16 14:03:46 -0500 |
| commit | 79cfb6aa4bcdd01ac44268a144c851957e4e4fd3 (patch) | |
| tree | e126abac03b497c50d6e00438712c1691a52f0d9 | |
| parent | 536f90da363df9df6a20b9a960214cbb8bbe181e (diff) | |
show stats table
| -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) |
