mercurial/commands.py
branchstable
changeset 14740 d83ad13a280e
parent 14729 94eea58da2a3
child 14742 271424fdbeec
equal deleted inserted replaced
14739:a95efd378641 14740:d83ad13a280e
   560     if command:
   560     if command:
   561         changesets = 1
   561         changesets = 1
   562         try:
   562         try:
   563             while changesets:
   563             while changesets:
   564                 # update state
   564                 # update state
   565                 status = util.system(command)
   565                 status = util.system(command, out=ui.fout)
   566                 if status == 125:
   566                 if status == 125:
   567                     transition = "skip"
   567                     transition = "skip"
   568                 elif status == 0:
   568                 elif status == 0:
   569                     transition = "good"
   569                     transition = "good"
   570                 # status < 0 means process was killed
   570                 # status < 0 means process was killed