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

Side by Side Diff: build.py

Issue 5710085762318336: 1757 - Integrate ensure_dependencies.py with the adblockpluschrome repository (Closed)
Patch Set: '1757 - Integrate ensure_dependencies.py with the adblockpluschrome repository' Created Jan. 14, 2015, 11:40 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
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 DEPENDENCY_SCRIPT = os.path.join(os.path.dirname(__file__), "ensure_dependencies .py")
7
8 if os.path.isfile(DEPENDENCY_SCRIPT):
9 try:
10 subprocess.check_call(["python", DEPENDENCY_SCRIPT])
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:
12 print >>sys.stderr, e
13 print >>sys.stderr, "Failed to ensure dependencies being up-to-date!"
14
6 import buildtools.build 15 import buildtools.build
7 buildtools.build.processArgs('.', sys.argv) 16 buildtools.build.processArgs('.', sys.argv)
OLDNEW

Powered by Google App Engine
This is Rietveld