summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-16 15:17:46 -0500
committerJeff Carr <[email protected]>2025-10-16 15:17:46 -0500
commit87da05b61634ad9ca33513139516b0e522a1014a (patch)
treec17390aa3146ae443e761667fc60f6b27877dec1
parent79cfb6aa4bcdd01ac44268a144c851957e4e4fd3 (diff)
hmm.
-rw-r--r--doNewUser.go9
-rw-r--r--doStats.go4
2 files changed, 7 insertions, 6 deletions
diff --git a/doNewUser.go b/doNewUser.go
index 2fbcbbd..55a9b7c 100644
--- a/doNewUser.go
+++ b/doNewUser.go
@@ -18,12 +18,11 @@ func doNewUser() (string, error) {
var s string
var err error
- log.Info("---- ----")
- log.Info("---- Welcome to forge!!! ----")
- log.Info("---- ----")
- dumpDebug()
-
if me.forge.Config.Mode == forgepb.ForgeMode_UNKNOWN {
+ dumpDebug()
+ log.Info("---- ----")
+ log.Info("---- Welcome to forge!!! ----")
+ log.Info("---- ----")
// this should never happen
log.Info("You are a new user and we never introduced ourselves")
if fhelp.QuestionUser("forge will scan ~/go/src for git repos") {
diff --git a/doStats.go b/doStats.go
index e4a012e..2ed3e3a 100644
--- a/doStats.go
+++ b/doStats.go
@@ -33,7 +33,9 @@ func doStats() (string, error) {
if argv.Verify.Stats.List {
s := repo.Stats()
- footer := s.PrintTable()
+ s.SortPatchId()
+ // s.SortCtime()
+ footer := s.PrintTableLimit(-1)
return "stats table: " + footer, nil
}