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

Unified Diff: tools/bisect-builds.py

Issue 23726009: Change platform from lucid to precise for Linux and Linux 64. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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/bisect-builds.py
diff --git a/tools/bisect-builds.py b/tools/bisect-builds.py
index 38fe6a4c2a136687391197632e6f7d4ca8747fbb..15ace2e61f572d64d8c3f3e42115ab210c75153e 100755
--- a/tools/bisect-builds.py
+++ b/tools/bisect-builds.py
@@ -91,13 +91,13 @@ class PathContext(object):
if is_official:
if self.platform == 'linux':
- self._listing_platform_dir = 'lucid32bit/'
- self.archive_name = 'chrome-lucid32bit.zip'
- self._archive_extract_dir = 'chrome-lucid32bit'
+ self._listing_platform_dir = 'precise32bit/'
+ self.archive_name = 'chrome-precise32bit.zip'
+ self._archive_extract_dir = 'chrome-precise32bit'
elif self.platform == 'linux64':
- self._listing_platform_dir = 'lucid64bit/'
- self.archive_name = 'chrome-lucid64bit.zip'
- self._archive_extract_dir = 'chrome-lucid64bit'
+ self._listing_platform_dir = 'precise64bit/'
+ self.archive_name = 'chrome-precise64bit.zip'
+ self._archive_extract_dir = 'chrome-precise64bit'
elif self.platform == 'mac':
self._listing_platform_dir = 'mac/'
self._binary_name = 'Google Chrome.app/Contents/MacOS/Google Chrome'
@@ -200,7 +200,7 @@ class PathContext(object):
except ValueError:
pass
return (revisions, next_marker)
-
+
# Fetch the first list of revisions.
(revisions, next_marker) = _FetchAndParse(self.GetListingURL())
« 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