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

Unified Diff: build.py

Issue 5718624291520512: Issue 2020 - build.py should be callable from any directory (Closed)
Patch Set: Created Feb. 25, 2015, 8:40 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build.py
===================================================================
--- a/build.py
+++ b/build.py
@@ -1,15 +1,16 @@
#!/usr/bin/env python
# coding: utf-8
import os, sys, subprocess
-DEPENDENCY_SCRIPT = os.path.join(os.path.dirname(__file__), "ensure_dependencies.py")
+BASE_DIR = os.path.dirname(__file__)
+DEPENDENCY_SCRIPT = os.path.join(BASE_DIR, "ensure_dependencies.py")
try:
- subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT])
+ subprocess.check_call([sys.executable, DEPENDENCY_SCRIPT, BASE_DIR])
except subprocess.CalledProcessError as e:
print >>sys.stderr, e
print >>sys.stderr, "Failed to ensure dependencies being up-to-date!"
import buildtools.build
-buildtools.build.processArgs('.', sys.argv)
+buildtools.build.processArgs(BASE_DIR, sys.argv)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld