Index: build.py |
=================================================================== |
--- a/build.py |
+++ b/build.py |
@@ -3,5 +3,13 @@ |
import os, sys, subprocess |
+DEPENDENCY_SCRIPT = os.path.join(os.path.dirname(__file__), "ensure_dependencies.py") |
+ |
+try: |
+ subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT]) |
+except subprocess.CalledProcessError as e: |
+ print >>sys.stderr, e |
+ print >>sys.stderr, "Failed to ensure dependencies being up-to-date!" |
+ |
Sebastian Noack
2015/01/14 16:34:13
Maybe exit with a non-0 status code?
Sebastian Noack
2015/01/14 17:28:36
Thinking again about it, I think it's OK to just s
Wladimir Palant
2015/01/14 17:42:46
Making dependency issues non-fatal was one of the
|
import buildtools.build |
buildtools.build.processArgs('.', sys.argv) |