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

Side by Side 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:43 p.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 DEPENDECY_SCRIPT = os.path.join(os.getcwd(), "ensure_dependencies.py") 6 DEPENDECY_SCRIPT = os.path.join(os.getcwd(), "ensure_dependencies.py")
7 7
8 try: 8 try:
9 subprocess.check_call(["python", DEPENDECY_SCRIPT]) 9 subprocess.check_call(["python", DEPENDECY_SCRIPT])
10 except subprocess.CalledProcessError as e: 10 except subprocess.CalledProcessError as e:
11 print e 11 print >>sys.stderr, str(e)+'\n'
12 print "Failed to ensure dependencies being up-to-date!" 12 print >>sys.stderr,"Failed to ensure dependencies being up-to-date!"+'\n'
13 13
14 14
15 import buildtools.build 15 import buildtools.build
16 buildtools.build.processArgs('.', sys.argv) 16 buildtools.build.processArgs('.', 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