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

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

Issue 8773005: Get rid of guessing the VM location in frog.py. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years, 1 month 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
Index: frog/scripts/bootstrap/frog_wrapper.py
===================================================================
--- frog/scripts/bootstrap/frog_wrapper.py (revision 1968)
+++ frog/scripts/bootstrap/frog_wrapper.py (working copy)
@@ -17,6 +17,9 @@
print "Could not find frog"
return 1
+ frog_args = ['frog.py', '--vm=' + VM]
+ frog_args += args[2:len(args)]
+
filename = None
exit_code = 1
try:
@@ -30,7 +33,3 @@
filename.close()
return exit_code
-
-
-if __name__ == '__main__':
- sys.exit(main(sys.argv))

Powered by Google App Engine
This is Rietveld 408576698