From 680880b05cf33a19e4b23851384f4fa375846997 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 10 Oct 2025 09:05:44 -0500 Subject: hmm. notsure --- find.go | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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 { -- cgit v1.2.3