diff options
Diffstat (limited to 'windowReposFix.go')
| -rw-r--r-- | windowReposFix.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/windowReposFix.go b/windowReposFix.go index e5452b5..9fa38f1 100644 --- a/windowReposFix.go +++ b/windowReposFix.go @@ -279,7 +279,7 @@ func develBehindMasterProblem() *gitpb.Repos { if repo.GetDevelVersion() == repo.GetMasterVersion() { continue } - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) } return found @@ -292,7 +292,7 @@ func remoteUserBranchProblem() *gitpb.Repos { repo := all.Next() username := repo.GetUserBranchName() if repo.IsBranchRemote(username) { - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) } } @@ -314,13 +314,13 @@ func develRemoteProblem() *gitpb.Repos { // log.Info(lhash, rhash, repo.GetGoPath()) if lhash == "" || rhash == "" { // something is wrong if either of these are blank - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) continue } if lhash == rhash { continue } - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) } return found @@ -341,13 +341,13 @@ func masterRemoteProblem() *gitpb.Repos { // log.Info(lhash, rhash, repo.GetGoPath()) if lhash == "" || rhash == "" { // something is wrong if either of these are blank - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) continue } if lhash == rhash { continue } - found.AppendByGoPath(repo) + found.AppendByFullPath(repo) } return found |
