diff options
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() |
