##// END OF EJS Templates
largefiles: preserve the exit status of the rebase command
Matt Harbison -
r17578:40c988f1 stable
parent child Browse files
Show More
@@ -743,7 +743,7 b' def overrideclone(orig, ui, source, dest'
743 def overriderebase(orig, ui, repo, **opts):
743 def overriderebase(orig, ui, repo, **opts):
744 repo._isrebasing = True
744 repo._isrebasing = True
745 try:
745 try:
746 orig(ui, repo, **opts)
746 return orig(ui, repo, **opts)
747 finally:
747 finally:
748 repo._isrebasing = False
748 repo._isrebasing = False
749
749
General Comments 0
You need to be logged in to leave comments. Login now