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: tools/dartium/download_multivm.py

Issue 315923002: Fix path on multivm slave (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 months 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: tools/dartium/download_multivm.py
diff --git a/tools/dartium/download_multivm.py b/tools/dartium/download_multivm.py
index 0a31bceedd8ed4337db4a67ba9b7730e716c8816..a97c84f4c66c83e5ba5f953c070cfaa8192f7118 100755
--- a/tools/dartium/download_multivm.py
+++ b/tools/dartium/download_multivm.py
@@ -23,6 +23,8 @@ SRC_DIR = os.path.dirname(os.path.dirname(TOOLS_DIR))
GS_BUCKET = 'gs://dartium-archive'
if platform.system() == 'Windows':
GSUTIL = 'e:\\b\\build\\scripts\\slave\\gsutil.bat'
+ if not os.path.exists(GSUTIL):
+ GSUTIL = 'c:\\b\\build\\scripts\\slave\\gsutil.bat'
else:
GSUTIL = '/b/build/scripts/slave/gsutil'
if not os.path.exists(GSUTIL):
« 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