Left: | ||
Right: |
OLD | NEW |
---|---|
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") | |
7 | |
8 try: | |
9 subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT]) | |
10 except subprocess.CalledProcessError as e: | |
11 print >>sys.stderr, e | |
12 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!" | |
13 | |
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
| |
6 import buildtools.build | 14 import buildtools.build |
7 buildtools.build.processArgs('.', sys.argv) | 15 buildtools.build.processArgs('.', sys.argv) |
OLD | NEW |