From c4252d21031ed432405be6a4f008831732068101 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 31 Aug 2025 12:16:38 -0500 Subject: maybe locks will work. maybe I can make a global repos.pb file? --- doGui.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doGui.go') 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() -- cgit v1.2.3