From de30c30005f52696f87ebbed35949c80e54f8937 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 11 Sep 2025 02:54:05 -0500 Subject: [PATCH] s/namespace/Namespace/ --- doDirty.go | 2 +- humanTable.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doDirty.go b/doDirty.go index 4a45ed3..da11862 100644 --- a/doDirty.go +++ b/doDirty.go @@ -22,7 +22,7 @@ func (f *Forge) CheckDirtyQuiet() { for _, s := range stats { if s.Err == nil { } else { - log.Info("forge SetConfigSave(true)") + // log.Info("forge SetConfigSave(true)") f.SetConfigSave(true) changed = true } diff --git a/humanTable.go b/humanTable.go index da86cce..db41609 100644 --- a/humanTable.go +++ b/humanTable.go @@ -20,7 +20,7 @@ func (f *Forge) PrintHumanTable(allr *gitpb.Repos) { t := new(tally) // print the header - args := []string{"namespace", "branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type"} + args := []string{"Namespace", "branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type"} sizes := []int{35, 9, 4, 13, 13, 13, 1, 12, 12, 8} log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) @@ -39,7 +39,7 @@ func (f *Forge) PrintForgedTable(allr *gitpb.Repos) { t := new(tally) // print the header - args := []string{"namespace", "branch", "age", "master", "devel", "last tag", "", "", "", ""} + args := []string{"Namespace", "branch", "age", "master", "devel", "last tag", "", "", "", ""} sizes := []int{35, 9, 4, 13, 13, 13, 13, 12, 12, 8} log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) @@ -58,7 +58,7 @@ func (f *Forge) PrintHumanTableFull(allr *gitpb.Repos) { t := new(tally) // print the header - args := []string{"branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type", "namespace"} + args := []string{"branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type", "Namespace"} sizes := []int{9, 4, 13, 13, 13, 1, 12, 12, 8, 0} log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) @@ -78,7 +78,7 @@ func (f *Forge) PrintHumanTableDirty(allr *gitpb.Repos) { t := new(tally) // print the header - args := []string{"namespace", "branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type"} + args := []string{"Namespace", "branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type"} sizes := []int{35, 9, 4, 13, 13, 13, 1, 12, 12, 8} log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args)))