[tools.darkcult] fix result check in break/continue mode

This commit is contained in:
bolero-MURAKAMI 2013-09-30 09:36:56 +09:00
parent e56429ad0a
commit 04f61170a7
2 changed files with 4 additions and 3 deletions

View file

@ -26,6 +26,7 @@ def continue_build(command):
sys.stdout.write(".")
sys.stdout.flush()
result = subprocess.call(command[0], shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
if not result:
logging.critical(command[1])
return result