summaryrefslogtreecommitdiff
path: root/doGui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-31 12:16:38 -0500
committerJeff Carr <[email protected]>2025-08-31 12:16:38 -0500
commitc4252d21031ed432405be6a4f008831732068101 (patch)
tree35853d100781756ea826e6e44d2a61340faaa911 /doGui.go
parent9292eb18fa1ccec8229c3182c2dcbeab03d09e58 (diff)
maybe locks will work. maybe I can make a global repos.pb file?
Diffstat (limited to 'doGui.go')
-rw-r--r--doGui.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/doGui.go b/doGui.go
index 3b129bd..ec28b2a 100644
--- a/doGui.go
+++ b/doGui.go
@@ -41,7 +41,7 @@ func debug() {
continue
}
- found.AppendByGoPath(repo)
+ found.AppendByFullPath(repo)
}
tmp := fmt.Sprintf("writable (%d)", found.Len())
@@ -233,7 +233,7 @@ func findMergeToDevel() *gitpb.Repos {
for repo := range me.forge.Repos.IterByFullPath() {
// this sees if user has patches for devel. If it does, add it to found
if repo.CountDiffObjects(repo.GetUserBranchName(), repo.GetDevelBranchName()) > 0 {
- found.AppendByGoPath(repo)
+ found.AppendByFullPath(repo)
}
}
now := time.Now()
@@ -264,7 +264,7 @@ func findMergeToMaster() *gitpb.Repos {
continue
}
if repo.GetMasterVersion() != repo.GetDevelVersion() {
- me.found.AppendByGoPath(repo)
+ me.found.AppendByFullPath(repo)
continue
}
*/
@@ -279,7 +279,7 @@ func findMergeToMaster() *gitpb.Repos {
// this sees if devel has patches for master. If it does, add it to me.found
if repo.CountDiffObjects(repo.GetDevelBranchName(), repo.GetMasterBranchName()) > 0 {
- found.AppendByGoPath(repo)
+ found.AppendByFullPath(repo)
}
}
now := time.Now()