From 8705f1c34534163ac0658a3e6e07dbc695a16d1a Mon Sep 17 00:00:00 2001 From: Yuki Nagato <37764578+YUKI2eN3e@users.noreply.github.com> Date: Wed, 10 Jul 2024 20:36:58 -0700 Subject: [PATCH] Raspberry-pi (#1814) * Get install script to work on raspberry pi * cleanup --- install-from-binstall-release.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install-from-binstall-release.sh b/install-from-binstall-release.sh index 1da856d4..05e507bf 100755 --- a/install-from-binstall-release.sh +++ b/install-from-binstall-release.sh @@ -13,6 +13,9 @@ if [ "$os" == "Darwin" ]; then unzip cargo-binstall-universal-apple-darwin.zip elif [ "$os" == "Linux" ]; then machine="$(uname -m)" + if [ "$machine" == "armv7l" ]; then + machine="armv7" + fi target="${machine}-unknown-linux-musl" if [ "$machine" == "armv7" ]; then target="${target}eabihf"