| Index: tools/bisect-builds.py
|
| diff --git a/tools/bisect-builds.py b/tools/bisect-builds.py
|
| index 2195a46404c2982e7e960be531fb56c980a75b40..4aa177279052db497244d634e8f26194a47b330e 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,
|
|
|