summaryrefslogtreecommitdiff
path: root/patchset.Make.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-21 17:17:05 -0600
committerJeff Carr <[email protected]>2025-02-21 17:17:05 -0600
commita170250cb4e44b87641b2a3b7a36afec3bfab741 (patch)
tree3ad50752fc2d93ff14a2e3c9c7ca7442e243961b /patchset.Make.go
parent2fc67512c8706369e1c6f67d189052657986624e (diff)
wrong logicv0.0.89v0.0.88
Diffstat (limited to 'patchset.Make.go')
-rw-r--r--patchset.Make.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/patchset.Make.go b/patchset.Make.go
index 573e7f4..54f9a8a 100644
--- a/patchset.Make.go
+++ b/patchset.Make.go
@@ -43,10 +43,12 @@ func (f *Forge) MakeDevelPatchSet(name string) (*Patchset, error) {
for all.Scan() {
repo := all.Next()
- if !repo.IsLocalBranch(repo.GetUserBranchName()) {
+ if ! repo.IsLocalBranch(repo.GetUserBranchName()) {
+ // log.Info("repo doesn't have user branch", repo.GetGoPath())
continue
}
- if !repo.IsLocalBranch(repo.GetDevelBranchName()) {
+ if ! repo.IsLocalBranch(repo.GetDevelBranchName()) {
+ // log.Info("repo doesn't have devel branch", repo.GetGoPath())
continue
}