Don't throw exception when ninja quit unnormally.

This commit is contained in:
Cheng Zhao 2013-06-24 16:05:22 +08:00
parent 5c4c86c6ef
commit 85d7e7b034

View file

@ -13,7 +13,7 @@ def main():
args = parse_args()
for config in args.configuration:
build_path = os.path.join('out', config)
subprocess.check_call(['ninja', '-C', build_path])
subprocess.call(['ninja', '-C', build_path])
def parse_args():