Skip to content

Commit

Permalink
Merge pull request #1784 from d-loose/fix-fvm-arch
Browse files Browse the repository at this point in the history
fix: add aarch64 arch to fvm install script
  • Loading branch information
d-loose authored Aug 19, 2024
2 parents b934ceb + 70aadfc commit c88fe1f
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 c88fe1f

Please sign in to comment.