Don't throw exception when ninja quit unnormally.
This commit is contained in:
parent
5c4c86c6ef
commit
85d7e7b034
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ def main():
|
||||||
args = parse_args()
|
args = parse_args()
|
||||||
for config in args.configuration:
|
for config in args.configuration:
|
||||||
build_path = os.path.join('out', config)
|
build_path = os.path.join('out', config)
|
||||||
subprocess.check_call(['ninja', '-C', build_path])
|
subprocess.call(['ninja', '-C', build_path])
|
||||||
|
|
||||||
|
|
||||||
def parse_args():
|
def parse_args():
|
||||||
|
|
Loading…
Reference in a new issue