Skip to content

Commit bca672a

Browse files
Update PCbuild/get_external.py
Co-authored-by: Steve Dower <steve.dower@microsoft.com>
1 parent 84b07ff commit bca672a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PCbuild/get_external.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def fetch_release(tag, tarball_dir, *, org='python', verbose=False):
4949
if not arch:
5050
machine = platform.machine()
5151
arch = 'ARM64' if machine == 'ARM64' else 'AMD64'
52-
elif arch in ('x86', 'x64'):
52+
elif arch.lower() in ('x86', 'x64'):
5353
arch = 'AMD64'
5454
reporthook = None
5555
if verbose:

0 commit comments

Comments
 (0)