Skip to content

Commit

Permalink
fix: add aarch64 arch to fvm install script
Browse files Browse the repository at this point in the history
  • Loading branch information
d-loose committed Aug 19, 2024
1 parent b934ceb commit 70aadfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install-fvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ esac

case "$ARCH" in
x86_64) ARCH='x64' ;;
arm64) ARCH='arm64' ;;
arm64|aarch64) ARCH='arm64' ;;
armv7l) ARCH='arm' ;;
*) log_message "Unsupported architecture"; exit 1 ;;
esac
Expand Down

0 comments on commit 70aadfc

Please sign in to comment.