changes from gitpb

This commit is contained in:
Jeff Carr 2025-02-21 09:34:24 -06:00
parent eaadfa21d3
commit 2fc67512c8
1 changed files with 2 additions and 2 deletions

View File

@ -43,10 +43,10 @@ func (f *Forge) MakeDevelPatchSet(name string) (*Patchset, error) {
for all.Scan() { for all.Scan() {
repo := all.Next() repo := all.Next()
if !repo.ExistsUserBranch() { if !repo.IsLocalBranch(repo.GetUserBranchName()) {
continue continue
} }
if !repo.ExistsDevelBranch() { if !repo.IsLocalBranch(repo.GetDevelBranchName()) {
continue continue
} }