Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install-standalone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
ARCH="\$(uname -m)"
if [ "\$ARCH" == "x86_64" ]; then
ARCH=x64
elif [[ "\$ARCH" == "aarch64" || "\$ARCH" == "arm64" ]]; then
ARCH=arm64
elif [[ "\$ARCH" == aarch* ]]; then
ARCH=arm
elif [[ "\$ARCH" == "arm64" ]]; then
ARCH=arm64
else
echoerr "unsupported arch: \$ARCH"
exit 1
Expand Down