Skip to content

Commit

Permalink
Fix install script
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeschastny committed Jan 22, 2025
1 parent 30a5e0d commit 9d7fb0d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/install_webp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ MACHINE_ARCH=`uname -m`
if [ ${MACHINE_ARCH} == 'x86_64' ]; then
# 64-bit system
ARCH="x86-64"
elif [${MACHINE_ARCH} == 'aarch64' ]; then
elif [ ${MACHINE_ARCH} == 'arm64' ]; then
# 64-bit ARM system
ARCH="arm64"
elif [ ${MACHINE_ARCH} == 'aarch64' ]; then
# 64-bit ARM system
ARCH="aarch64"
elif [${MACHINE_ARCH} == 'arm64' ]; then
Expand Down

0 comments on commit 9d7fb0d

Please sign in to comment.