diff options
Diffstat (limited to 'branches.go')
| -rw-r--r-- | branches.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/branches.go b/branches.go index 378505e..4c24872 100644 --- a/branches.go +++ b/branches.go @@ -77,7 +77,7 @@ func (repo *Repo) DeleteLocalDevelBranch() error { if b1 == 0 { cmd := []string{"git", "branch", "-D", repo.GetDevelBranchName()} // log.Info("DEVEL IS IN REMOTE", repo.GetGoPath(), cmd) - err := repo.RunVerbose(cmd) + _, err := repo.RunVerboseOnError(cmd) return err } else { return fmt.Errorf("local branch has patches not in remote") |
