OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 # coding: utf-8 |
| 3 |
| 4 import os |
| 5 import sys |
| 6 import subprocess |
| 7 |
| 8 BASE_DIR = os.path.dirname(os.path.abspath(__file__)) |
| 9 DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py") |
| 10 |
| 11 if __name__ == "__main__": |
| 12 try: |
| 13 subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR]) |
| 14 except subprocess.CalledProcessError as e: |
| 15 print >>sys.stderr, e |
| 16 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!" |
| 17 |
| 18 # We're faking an invocation of build.py here, because we would have to |
| 19 # duplicate command line parsing otherwise. It would be nicer if buildtools |
| 20 # would make it possible to invoke the docs command directly. |
| 21 args = sys.argv |
| 22 args[1:1] = ["-t", "gecko", "docs"] |
| 23 |
| 24 import buildtools.build |
| 25 buildtools.build.processArgs(BASE_DIR, args) |
OLD | NEW |