From c4252d21031ed432405be6a4f008831732068101 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 31 Aug 2025 12:16:38 -0500 Subject: maybe locks will work. maybe I can make a global repos.pb file? --- windowReposFix.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'windowReposFix.go') 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 -- cgit v1.2.3