Merge pull request #5631 from electron/x64-by-default-win32

Default to amd64 on Windows
This commit is contained in:
Cheng Zhao 2016-05-21 13:39:25 +00:00
commit 6c8ffcf7a0

View file

@ -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():