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