diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-01 16:53:52 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-01 16:53:52 +0000 |
commit | 1960edd57c9a2389229a774ef8f66597c28ca1fb (patch) | |
tree | dbecbe40fa1d4b19439c87a5624b87dd382746a4 /tools/bisect-builds.py | |
parent | 4381fc740ce38e7eb25535484c25fe2c1c7a1a08 (diff) | |
download | chromium_src-1960edd57c9a2389229a774ef8f66597c28ca1fb.zip chromium_src-1960edd57c9a2389229a774ef8f66597c28ca1fb.tar.gz chromium_src-1960edd57c9a2389229a774ef8f66597c28ca1fb.tar.bz2 |
bisect-builds: It's linux64, not linux-64.
It looks like this changed accidentally in http://codereview.chromium.org/6995117
BUG=none
TEST=Run `bisect-builds.py -a linux64` as suggested by the help output. Works again.
Review URL: http://codereview.chromium.org/7294023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91309 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/bisect-builds.py')
-rwxr-xr-x | tools/bisect-builds.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bisect-builds.py b/tools/bisect-builds.py index d9c0569..9edab38 100755 --- a/tools/bisect-builds.py +++ b/tools/bisect-builds.py @@ -53,13 +53,13 @@ class PathContext(object): # _listing_platform_dir = Directory that holds revisions. Ends with a '/'. # _archive_extract_dir = Uncompressed directory in the archive_name file. # _binary_name = The name of the executable to run. - if self.platform == 'linux' or self.platform == 'linux-64': + if self.platform == 'linux' or self.platform == 'linux64': self._listing_platform_dir = 'Linux/' self.archive_name = 'chrome-linux.zip' self._archive_extract_dir = 'chrome-linux' self._binary_name = 'chrome' # Linux and x64 share all the same path data except for the archive dir. - if self.platform == 'linux-64': + if self.platform == 'linux64': self._listing_platform_dir = 'Linux_x64/' elif self.platform == 'mac': self._listing_platform_dir = 'Mac/' |