Skip to content

Commit

Permalink
build: Fix mac arm64 binary download
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Oct 28, 2024
1 parent 993f8dd commit 5241e18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion binaries/streamer_binaries/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
_cpu = {
'x86_64': 'x64', # Linux/Mac report this key
'AMD64': 'x64', # Windows reports this key
'aarch64': 'arm64',
'aarch64': 'arm64', # Linux reports this key
'arm64': 'arm64', # Mac reports this key
}[platform.machine()]

# Specific versions of Ubuntu with special builds for hardware-encoding.
Expand Down

0 comments on commit 5241e18

Please sign in to comment.