diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 12:16:38 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 12:16:38 -0500 |
| commit | c4252d21031ed432405be6a4f008831732068101 (patch) | |
| tree | 35853d100781756ea826e6e44d2a61340faaa911 /doGui.go | |
| parent | 9292eb18fa1ccec8229c3182c2dcbeab03d09e58 (diff) | |
maybe locks will work. maybe I can make a global repos.pb file?
Diffstat (limited to 'doGui.go')
| -rw-r--r-- | doGui.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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() |
