From 0e63050916ce847d38245bf9d35d807996141ff4 Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Fri, 20 May 2016 14:20:48 -0700 Subject: [PATCH] Default to amd64 on Windows --- script/lib/config.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/script/lib/config.py b/script/lib/config.py index e879d7a21c42..01efebfd4fe8 100644 --- a/script/lib/config.py +++ b/script/lib/config.py @@ -38,10 +38,7 @@ def get_target_arch(): if e.errno != errno.ENOENT: raise - if PLATFORM == 'win32': - return 'ia32' - else: - return 'x64' + return 'x64' def get_chromedriver_version():