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

Unified Diff: build.py

Issue 6018170477346816: 1588 - Integrate ensure_dependencies.py with the adblockplus repository (Closed)
Patch Set: 1588 - Integrate ensure_dependencies.py with the adblockplus repository Created Nov. 21, 2014, 3:50 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 | « .hgsubstate ('k') | dependencies » ('j') | dependencies » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build.py
===================================================================
--- a/build.py
+++ b/build.py
@@ -3,5 +3,13 @@
import os, sys, subprocess
+DEPENDECY_SCRIPT = os.path.join(os.getcwd(), "ensure_dependencies.py")
Wladimir Palant 2014/12/17 14:29:32 1) Nit: DEPENDENCY_SCRIPT please. 2) Don't use cur
+
+try:
+ subprocess.check_call(["python", DEPENDECY_SCRIPT])
Wladimir Palant 2014/12/17 14:29:32 Only call this if the script actually exists pleas
+except subprocess.CalledProcessError as e:
+ print >>sys.stderr, str(e)+'\n'
Wladimir Palant 2014/12/17 14:29:32 print will automatically add a newline, no need to
+ print >>sys.stderr,"Failed to ensure dependencies being up-to-date!"+'\n'
Wladimir Palant 2014/12/17 14:29:32 Style nit: space after comma please. Newline is u
+
import buildtools.build
buildtools.build.processArgs('.', sys.argv)
« no previous file with comments | « .hgsubstate ('k') | dependencies » ('j') | dependencies » ('J')

Powered by Google App Engine
This is Rietveld