OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 # coding: utf-8 |
| 3 |
| 4 import os, sys, subprocess |
| 5 |
| 6 BASE_DIR = os.path.dirname(os.path.abspath(__file__)) |
| 7 DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py") |
| 8 |
| 9 try: |
| 10 subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR]) |
| 11 except subprocess.CalledProcessError as e: |
| 12 print >>sys.stderr, e |
| 13 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!" |
| 14 |
| 15 import buildtools.build |
| 16 buildtools.build.processArgs(BASE_DIR, sys.argv) |
OLD | NEW |