Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: build.py

Issue 5969528966086656: Issue 2020 - Fixed issue when build.py is called without any directory at all (Closed)
Patch Set: Created Feb. 27, 2015, 7:43 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 BASE_DIR = os.path.dirname(__file__) 6 BASE_DIR = os.path.dirname(os.path.abspath(__file__))
7 DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py") 7 DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py")
8 8
9 try: 9 try:
10 subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR]) 10 subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR])
11 except subprocess.CalledProcessError as e: 11 except subprocess.CalledProcessError as e:
12 print >>sys.stderr, e 12 print >>sys.stderr, e
13 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!" 13 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!"
14 14
15 import buildtools.build 15 import buildtools.build
16 buildtools.build.processArgs(BASE_DIR, sys.argv) 16 buildtools.build.processArgs(BASE_DIR, sys.argv)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld