##// END OF EJS Templates
push: use stepsdone to control bookmark push...
Pierre-Yves David -
r22240:d092f4b6 default
parent child Browse files
Show More
@@ -633,8 +633,9 b' def _pushobsolete(pushop):'
633
633
634 def _pushbookmark(pushop):
634 def _pushbookmark(pushop):
635 """Update bookmark position on remote"""
635 """Update bookmark position on remote"""
636 if pushop.ret == 0:
636 if pushop.ret == 0 or 'bookmarks' in pushop.stepsdone:
637 return
637 return
638 pushop.stepsdone.add('bookmarks')
638 ui = pushop.ui
639 ui = pushop.ui
639 remote = pushop.remote
640 remote = pushop.remote
640 for b, old, new in pushop.outbookmarks:
641 for b, old, new in pushop.outbookmarks:
General Comments 0
You need to be logged in to leave comments. Login now