summaryrefslogtreecommitdiff
path: root/doCommon.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-08 00:51:53 -0600
committerJeff Carr <[email protected]>2025-01-08 00:51:53 -0600
commitbcabf1b3b75f86f09114116afb2636b507ededcc (patch)
treeab3d79102bba613ddc43bc3a2a1daee9003b0fdb /doCommon.go
parentd5143b94b8527eb94e09f9c46443a2e359e1219b (diff)
move COBOL like print table into forgepb
Diffstat (limited to 'doCommon.go')
-rw-r--r--doCommon.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doCommon.go b/doCommon.go
index 1241087..1a2a3aa 100644
--- a/doCommon.go
+++ b/doCommon.go
@@ -127,7 +127,7 @@ func doAllCheckoutDevel() bool {
me.forge = forgepb.Init()
if !IsEverythingOnDevel() {
log.Info("switching to devel branch failed")
- doHumanTable()
+ me.forge.PrintHumanTable(me.found)
badExit(nil)
return false
}
@@ -139,7 +139,7 @@ func doAllCheckoutUser() bool {
me.forge = forgepb.Init()
if !IsEverythingOnUser() {
log.Info("switching to user branch failed")
- doHumanTable()
+ me.forge.PrintHumanTable(me.found)
return false
}
return true