diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-10 18:16:45 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-10 18:16:45 +0000 |
commit | 20105cf8e266e4502b9d827c323db1683c0eddb1 (patch) | |
tree | 06a2e3a0b4d67492598d11d6b5864279065339a9 | |
parent | 3bc162012e59209e0520e6edde36fd3e2bba54d5 (diff) | |
download | chromium_src-20105cf8e266e4502b9d827c323db1683c0eddb1.zip chromium_src-20105cf8e266e4502b9d827c323db1683c0eddb1.tar.gz chromium_src-20105cf8e266e4502b9d827c323db1683c0eddb1.tar.bz2 |
bisect-builds.py: Use "win" instead of "xp" to fix Windows bisecting.
BUG=none
TEST=./tools/bisect-builds.py -a win
Review URL: http://codereview.chromium.org/6994012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84816 0039d316-1c4b-4281-b951-d872f2087c98
-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 2195a46..4aa1772 100755 --- a/tools/bisect-builds.py +++ b/tools/bisect-builds.py @@ -104,7 +104,7 @@ def SetArchiveVars(archive): BUILD_ZIP_NAME = 'chrome-mac.zip' BUILD_DIR_NAME = 'chrome-mac' BUILD_EXE_NAME = 'Chromium.app/Contents/MacOS/Chromium' - elif BUILD_ARCHIVE_TYPE in ('xp'): + elif BUILD_ARCHIVE_TYPE in ('win'): BUILD_ZIP_NAME = 'chrome-win32.zip' BUILD_DIR_NAME = 'chrome-win32' BUILD_EXE_NAME = 'chrome.exe' @@ -223,7 +223,7 @@ def main(): 'Tip: add "-- --no-first-run" to bypass the first run prompts.') parser = optparse.OptionParser(usage=usage) # Strangely, the default help output doesn't include the choice list. - choices = ['mac', 'xp', 'linux', 'linux64'] + choices = ['mac', 'win', 'linux', 'linux64'] # linux-chromiumos lacks a continuous archive http://crbug.com/78158 parser.add_option('-a', '--archive', choices = choices, |