##// END OF EJS Templates
bisect: fix --command for me.
Augie Fackler -
r7850:74c3baca default
parent child Browse files
Show More
@@ -331,7 +331,7 b' def bisect(ui, repo, rev=None, extra=Non'
331 try:
331 try:
332 while changesets:
332 while changesets:
333 # update state
333 # update state
334 status = os.spawnl(os.P_WAIT, commandpath)
334 status = os.spawnl(os.P_WAIT, commandpath, commandpath)
335 if status == 125:
335 if status == 125:
336 transition = "skip"
336 transition = "skip"
337 elif status == 0:
337 elif status == 0:
General Comments 0
You need to be logged in to leave comments. Login now