mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
fix(install.sh): downloading the right binary for apple silicon chip
re #1673
This commit is contained in:
parent
c54fae0136
commit
9707a2daf2
1 changed files with 5 additions and 1 deletions
|
@ -18,7 +18,11 @@ else
|
|||
fi
|
||||
|
||||
if [ $PLATFORM == "Darwin" ]; then
|
||||
PLATFORM="macos-x86-64"
|
||||
if [ "$(uname -m)" == "arm64" ]; then
|
||||
PLATFORM="macos-aarch64"
|
||||
else
|
||||
PLATFORM="macos-x86-64"
|
||||
fi
|
||||
elif [ $PLATFORM == "Linux" ]; then
|
||||
PLATFORM="ubuntu-20_04-x86-64"
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue