diff options
| -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 { |
