s/namespace/Namespace/

This commit is contained in:
Jeff Carr 2025-09-11 02:54:05 -05:00
parent b89a5571e9
commit de30c30005
2 changed files with 5 additions and 5 deletions

View File

@ -22,7 +22,7 @@ func (f *Forge) CheckDirtyQuiet() {
for _, s := range stats { for _, s := range stats {
if s.Err == nil { if s.Err == nil {
} else { } else {
log.Info("forge SetConfigSave(true)") // log.Info("forge SetConfigSave(true)")
f.SetConfigSave(true) f.SetConfigSave(true)
changed = true changed = true
} }

View File

@ -20,7 +20,7 @@ func (f *Forge) PrintHumanTable(allr *gitpb.Repos) {
t := new(tally) t := new(tally)
// print the header // 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} sizes := []int{35, 9, 4, 13, 13, 13, 1, 12, 12, 8}
log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args)))
@ -39,7 +39,7 @@ func (f *Forge) PrintForgedTable(allr *gitpb.Repos) {
t := new(tally) t := new(tally)
// print the header // 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} sizes := []int{35, 9, 4, 13, 13, 13, 13, 12, 12, 8}
log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args)))
@ -58,7 +58,7 @@ func (f *Forge) PrintHumanTableFull(allr *gitpb.Repos) {
t := new(tally) t := new(tally)
// print the header // 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} sizes := []int{9, 4, 13, 13, 13, 1, 12, 12, 8, 0}
log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args)))
@ -78,7 +78,7 @@ func (f *Forge) PrintHumanTableDirty(allr *gitpb.Repos) {
t := new(tally) t := new(tally)
// print the header // 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} sizes := []int{35, 9, 4, 13, 13, 13, 1, 12, 12, 8}
log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args)))