diff options
| author | Jeff Carr <[email protected]> | 2025-10-10 09:05:44 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-10 09:05:44 -0500 |
| commit | 680880b05cf33a19e4b23851384f4fa375846997 (patch) | |
| tree | ed0a0a56bf2ed2226349d05672abf82eecba81ec /find.go | |
| parent | a5f34181c935af5a98353f34e137b9bfe562d121 (diff) | |
hmm. notsure
Diffstat (limited to 'find.go')
| -rw-r--r-- | find.go | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -212,8 +212,16 @@ func cloneReposWithPatches() *gitpb.Repos { } if repo.GetUserVersion() == "" { // skip anything without a user branch - if !repo.IsLocalBranchVerbose(repo.GetUserBranchName()) { + THEBRANCH := repo.GetUserBranchName() + if repo.IsLocalBranch(repo.GetUserBranchName()) { + continue + } + if repo.IsLocalBranchVerbose(repo.GetUserBranchName()) { + log.Info("BRANCH IS LOCAL", THEBRANCH) // everthing is actually normal + continue + } else { + log.Info("BRANCH IS NOT LOCAL", THEBRANCH) } stop += 1 if stop < 5 { |
