summaryrefslogtreecommitdiff
path: root/doGui.go
diff options
context:
space:
mode:
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()