diff options
| -rw-r--r-- | patchset.Make.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/patchset.Make.go b/patchset.Make.go index 08b8ccc..573e7f4 100644 --- a/patchset.Make.go +++ b/patchset.Make.go @@ -43,10 +43,10 @@ func (f *Forge) MakeDevelPatchSet(name string) (*Patchset, error) { for all.Scan() { repo := all.Next() - if !repo.ExistsUserBranch() { + if !repo.IsLocalBranch(repo.GetUserBranchName()) { continue } - if !repo.ExistsDevelBranch() { + if !repo.IsLocalBranch(repo.GetDevelBranchName()) { continue } |
