##// END OF EJS Templates
pushbookmark: do not attempt to update bookmarks if the push failed (BC)...
Pierre-Yves David -
r22228:a3dc2d38 default
parent child Browse files
Show More
@@ -613,6 +613,8 b' def _pushobsolete(pushop):'
613
613
614 def _pushbookmark(pushop):
614 def _pushbookmark(pushop):
615 """Update bookmark position on remote"""
615 """Update bookmark position on remote"""
616 if pushop.ret == 0:
617 return
616 ui = pushop.ui
618 ui = pushop.ui
617 repo = pushop.repo.unfiltered()
619 repo = pushop.repo.unfiltered()
618 remote = pushop.remote
620 remote = pushop.remote
General Comments 0
You need to be logged in to leave comments. Login now