summaryrefslogtreecommitdiff
path: root/doGui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-04 09:15:32 -0500
committerJeff Carr <[email protected]>2025-09-04 09:15:32 -0500
commit5fec66f97cce98793c657e4183b7ade280f5c7f8 (patch)
tree70ea0530c41885bae1b867c8352c9007554b5197 /doGui.go
parent680069d4ca65c75ce1d7d462d98ce7e9e4c8bfdc (diff)
lots more code cleanups
Diffstat (limited to 'doGui.go')
-rw-r--r--doGui.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doGui.go b/doGui.go
index b121b93..1bc8660 100644
--- a/doGui.go
+++ b/doGui.go
@@ -257,7 +257,7 @@ func findMergeToDevel() *gitpb.Repos {
// me.forge.PrintHumanTable(found)
// check for merges from devel
- total, count, nope, _ := IsEverythingOnDevel()
+ total, count, nope, _ := me.forge.IsEverythingOnDevel()
log.Printf("devel branch check. %d total repos. (%d ok) (%d not on devel branch) (%s)\n", total, count, nope, shell.FormatDuration(time.Since(now)))
return found
}
@@ -303,7 +303,7 @@ func findMergeToMaster() *gitpb.Repos {
me.forge.PrintHumanTable(found)
// check for merges from devel
- total, count, nope, _ := IsEverythingOnMaster()
+ total, count, nope, _ := me.forge.IsEverythingOnMaster()
log.Printf("Master branch check. %d total repos. (%d ok) (%d not on master branch) (%s)\n", total, count, nope, shell.FormatDuration(time.Since(now)))
return found