equal
deleted
inserted
replaced
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 |