Index: git_common.py |
diff --git a/git_common.py b/git_common.py |
index a01f8e5694465219af083d5c4b12a5cbaca97a4b..a506fb851f208bbcac1a514d989d631bf6bf6dfb 100644 |
--- a/git_common.py |
+++ b/git_common.py |
@@ -525,7 +525,7 @@ def rebase(parent, start, branch, abort=False): |
return RebaseRet(True, '', '') |
except subprocess2.CalledProcessError as cpe: |
if abort: |
- run('rebase', '--abort') |
+ run_with_retcode('rebase', '--abort') # ignore failure |
return RebaseRet(False, cpe.stdout, cpe.stderr) |