Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krypton-byte committed Jul 21, 2024
1 parent 7de6d89 commit 5f75005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repack.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ARCH(Enum):
@classmethod
def auto(cls, os: OS):
if arch_name == "arm64":
if os == OS.MAC:
if os in [OS.MAC, OS.WINDOWS]:
return cls.ARM64
return cls.AARCH64
elif arch_name == "amd64":
Expand Down

0 comments on commit 5f75005

Please sign in to comment.