Skip to content

Commit

Permalink
Fix platform mapping for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
nrobinson2000 committed May 22, 2024
1 parent 80e344c commit 6ee2505
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion neopo/workbench.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,12 @@ def get_deps():
# But it is still hosted on binaries.particle.io

os_platform = platform.system().lower()
plat_map = {"armv7l": "arm", "aarch64": "arm64", "x86_64": "x64"}
plat_map = {
"armv7l": "arm",
"aarch64": "arm64",
"arm64": "arm64",
"x86_64": "x64",
}
os_arch = plat_map[platform.machine()]

# Get manifest file
Expand Down

0 comments on commit 6ee2505

Please sign in to comment.