summaryrefslogtreecommitdiff
path: root/submitPatches.go
diff options
context:
space:
mode:
Diffstat (limited to 'submitPatches.go')
-rw-r--r--submitPatches.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/submitPatches.go b/submitPatches.go
index 485e0bf..e3d4d97 100644
--- a/submitPatches.go
+++ b/submitPatches.go
@@ -63,7 +63,7 @@ func submitPatchesBox(box *gui.Node) *patchSummary {
})
s.grid.NewButton("GetPatches()", func() {
- var count int
+ var repocount, count int
for _, repo := range repolist.AllRepos() {
// if repo.GoPath() == "go.wit.com/apps/guireleaser" {
// repo.GetUserPatches()
@@ -73,11 +73,13 @@ func submitPatchesBox(box *gui.Node) *patchSummary {
//if repo.IsDirty() {
// continue
//}
- c, _ := repo.GetMasterPatches()
- count += c
+ patchc, _ := repo.GetMasterPatches()
+ count += patchc
+ repocount += 1
// }
}
s.totalMasterPatches.SetText(strconv.Itoa(count) + " patches")
+ s.totalMasterRepos.SetText(strconv.Itoa(repocount) + " go repos")
})
s.gitPullB = s.grid.NewButton("git pull", func() {