Skip to content

Commit

Permalink
Add support for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
RedTachyon committed Apr 19, 2024
1 parent 651854a commit 3483334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogment_lab/cli/download_cogment.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_current_arch() -> Arch:
if py_machine in ["x86_64", "i686", "AMD64"]:
return Arch.AMD64

if py_machine in ["arm64"]:
if py_machine in ["arm64", "aarch64"]:
return Arch.ARM64

raise RuntimeError(f"Unsupported architecture [{py_machine}]")
Expand Down

0 comments on commit 3483334

Please sign in to comment.