summaryrefslogtreecommitdiff
path: root/doGui.go
diff options
context:
space:
mode:
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