summaryrefslogtreecommitdiff
path: root/find.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-10 09:05:44 -0500
committerJeff Carr <[email protected]>2025-10-10 09:05:44 -0500
commit680880b05cf33a19e4b23851384f4fa375846997 (patch)
treeed0a0a56bf2ed2226349d05672abf82eecba81ec /find.go
parenta5f34181c935af5a98353f34e137b9bfe562d121 (diff)
hmm. notsure
Diffstat (limited to 'find.go')
-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 {