Index: build.py |
=================================================================== |
--- a/build.py |
+++ b/build.py |
@@ -3,5 +3,14 @@ |
import os, sys, subprocess |
+DEPENDENCY_SCRIPT = os.path.join(os.path.dirname(__file__), "ensure_dependencies.py") |
+ |
+if os.path.isfile(DEPENDENCY_SCRIPT): |
+ try: |
+ subprocess.check_call(["python", DEPENDENCY_SCRIPT]) |
+ except subprocess.CalledProcessError as e: |
+ print >>sys.stderr, str(e) |
Wladimir Palant
2014/12/17 16:22:18
Not addressed: print e rather than str(e)?
|
+ print >>sys.stderr, "Failed to ensure dependencies being up-to-date!" |
+ |
Wladimir Palant
2014/12/17 16:22:18
Nit: The indentation is wrong, we use two spaces f
|
import buildtools.build |
buildtools.build.processArgs('.', sys.argv) |