Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: frog/scripts/bootstrap/frog_wrapper.py

Issue 8931023: Bugfix in the frog_wrapper file to pass the right arguments to frog.py. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
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: frog/scripts/bootstrap/frog_wrapper.py
===================================================================
--- frog/scripts/bootstrap/frog_wrapper.py (revision 2417)
+++ frog/scripts/bootstrap/frog_wrapper.py (working copy)
@@ -17,7 +17,7 @@
print "Could not find frog"
return 1
- frog_args = ['frog.py', '--vm=' + VM]
+ frog_args = ['frog.py', '--vm=' + VM, '--']
frog_args += args[2:len(args)]
filename = None
@@ -27,7 +27,7 @@
paths = [os.path.dirname(home)]
(filename, pathname, description) = imp.find_module('frog', paths)
module = imp.load_module('frog', filename, pathname, description)
- exit_code = module.main(args)
+ exit_code = module.main(frog_args)
finally:
if filename:
filename.close()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698