use the better string: 'namespace'
This commit is contained in:
parent
9027d88e50
commit
04983dc7ce
|
@ -41,7 +41,7 @@ func (f *Forge) PrintHumanTable(allr *gitpb.Repos) {
|
||||||
t := new(tally)
|
t := new(tally)
|
||||||
|
|
||||||
// print the header
|
// print the header
|
||||||
args := []string{"repopath", "cur br", "age", "master", "devel", "user", "curver", "lasttag", "next", "repo type"}
|
args := []string{"namespace", "cur br", "age", "master", "devel", "user", "curver", "lasttag", "next", "repo type"}
|
||||||
sizes := []int{40, 12, 6, 12, 16, 16, 16, 12, 12, 8}
|
sizes := []int{40, 12, 6, 12, 16, 16, 16, 12, 12, 8}
|
||||||
log.Info(standardTableSize10(sizes, args))
|
log.Info(standardTableSize10(sizes, args))
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ func (f *Forge) PrintHumanTableFull(allr *gitpb.Repos) {
|
||||||
t := new(tally)
|
t := new(tally)
|
||||||
|
|
||||||
// print the header
|
// print the header
|
||||||
args := []string{"cur br", "age", "master", "devel", "user", "curver", "lasttag", "next", "repo type", "repopath"}
|
args := []string{"cur br", "age", "master", "devel", "user", "curver", "lasttag", "next", "repo type", "namespace"}
|
||||||
sizes := []int{12, 6, 12, 16, 16, 16, 12, 12, 8, 0}
|
sizes := []int{12, 6, 12, 16, 16, 16, 12, 12, 8, 0}
|
||||||
log.Info(standardTableSize10(sizes, args))
|
log.Info(standardTableSize10(sizes, args))
|
||||||
|
|
||||||
|
@ -99,7 +99,7 @@ func (f *Forge) PrintHumanTableDirty(allr *gitpb.Repos) {
|
||||||
t := new(tally)
|
t := new(tally)
|
||||||
|
|
||||||
// print the header
|
// print the header
|
||||||
args := []string{"repopath", "cur br", "age", "master", "devel", "user", "curver", "lasttag", "next", "repo type"}
|
args := []string{"namespace", "cur br", "age", "master", "devel", "user", "curver", "lasttag", "next", "repo type"}
|
||||||
sizes := []int{40, 12, 6, 12, 16, 16, 16, 12, 12, 8}
|
sizes := []int{40, 12, 6, 12, 16, 16, 16, 12, 12, 8}
|
||||||
log.Info(standardTableSize10(sizes, args))
|
log.Info(standardTableSize10(sizes, args))
|
||||||
|
|
||||||
|
|
2
rill.go
2
rill.go
|
@ -49,7 +49,7 @@ func (f *Forge) updateRepo(repo *gitpb.Repo) error {
|
||||||
|
|
||||||
if repo.DidRepoChange() {
|
if repo.DidRepoChange() {
|
||||||
f.configSave = true
|
f.configSave = true
|
||||||
log.Info("repo changed ", repo.FullPath, repo.StateChange)
|
// log.Info("repo changed ", repo.FullPath, repo.StateChange)
|
||||||
if err := repo.Reload(); err != nil {
|
if err := repo.Reload(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue