Index: build.py |
=================================================================== |
--- a/build.py |
+++ b/build.py |
@@ -3,5 +3,14 @@ |
import os, sys, subprocess |
+DEPENDECY_SCRIPT = os.path.join(os.getcwd(), "ensure_dependencies.py") |
+ |
+try: |
+ subprocess.check_call(["python", DEPENDECY_SCRIPT]) |
+except subprocess.CalledProcessError as e: |
+ print e |
+ print "Failed to ensure dependencies being up-to-date!" |
mathias
2014/11/21 15:19:05
Please print error messages and similar to `sys.st
|
+ |
+ |
import buildtools.build |
buildtools.build.processArgs('.', sys.argv) |