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 /windowReposFix.go | |
| parent | 9292eb18fa1ccec8229c3182c2dcbeab03d09e58 (diff) | |
maybe locks will work. maybe I can make a global repos.pb file?
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 |
