summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--find.go10
1 files changed, 9 insertions, 1 deletions
diff --git a/find.go b/find.go
index f17fe16..6963901 100644
--- a/find.go
+++ b/find.go
@@ -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 {