Browse Source

Don't throw exception when ninja quit unnormally.

Cheng Zhao 11 years ago
parent
commit
85d7e7b034
1 changed files with 1 additions and 1 deletions
  1. 1 1
      script/build.py

+ 1 - 1
script/build.py

@@ -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():