summaryrefslogtreecommitdiff
path: root/doBuild.debian.go
diff options
context:
space:
mode:
Diffstat (limited to 'doBuild.debian.go')
-rw-r--r--doBuild.debian.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/doBuild.debian.go b/doBuild.debian.go
index 570ef94..a34bc43 100644
--- a/doBuild.debian.go
+++ b/doBuild.debian.go
@@ -11,6 +11,7 @@ import (
"strings"
"go.wit.com/lib/ENV"
+ "go.wit.com/lib/cobol"
"go.wit.com/lib/debian"
"go.wit.com/lib/fhelp"
"go.wit.com/lib/gui/shell"
@@ -22,6 +23,7 @@ import (
func findBuildDeb() *gitpb.Repos {
initForge()
+ var dumbtable [][]string
found := gitpb.NewRepos()
for check := range me.forge.Repos.IterAll() {
if me.forge.Config.IsReadOnly(check.GetNamespace()) {
@@ -59,13 +61,16 @@ func findBuildDeb() *gitpb.Repos {
if shouldBuild(check) == "yes" {
// need to build
} else {
- log.Info(check.FullPath, "not building for reasons: todo: get reason")
+ // log.Info(check.FullPath, "not building for reasons: todo: get reason")
+ dumbtable = append(dumbtable, []string{check.FullPath, "not building for reasons: todo: get reason"})
continue
}
}
found.Append(check)
}
+ footer := cobol.SimpleTable(dumbtable)
+ log.Info("simple build table footer:", footer)
found.ActualSort()
return found