| 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]) |
|
Wladimir Palant
2015/01/14 13:11:17
Only realized now - this shouldn't be "python" but
paco
2015/01/14 16:00:36
As discussed on IRC, this should be `sys.executabl
|
| + except subprocess.CalledProcessError as e: |
| + print >>sys.stderr, e |
| + print >>sys.stderr, "Failed to ensure dependencies being up-to-date!" |
| + |
| import buildtools.build |
| buildtools.build.processArgs('.', sys.argv) |