Skip to content

Commit

Permalink
Fix windows swapped (aarch64, x86_64) arch in scie platform enum (#2495)
Browse files Browse the repository at this point in the history
  • Loading branch information
asahaf authored Aug 6, 2024
1 parent ebfdba2 commit ee5b1c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pex/scie/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ def qualified_file_name(self, file_name):
LINUX_X86_64 = Value("linux-x86_64")
MACOS_AARCH64 = Value("macos-aarch64")
MACOS_X86_64 = Value("macos-x86_64")
WINDOWS_AARCH64 = Value("windows-x86_64")
WINDOWS_X86_64 = Value("windows-aarch64")
WINDOWS_AARCH64 = Value("windows-aarch64")
WINDOWS_X86_64 = Value("windows-x86_64")
CURRENT = _CurrentPlatform()

@classmethod
Expand Down

0 comments on commit ee5b1c9

Please sign in to comment.