Skip to content

Commit

Permalink
Check for any arm platform
Browse files Browse the repository at this point in the history
  • Loading branch information
undfined committed Sep 20, 2024
1 parent 8806094 commit 92ecf83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ if [[ $PLATFORM = "aarch64" ]]; then
which maturin || pip install maturin
fi

if [[ $PLATFORM = "arm64" ]]; then
echo "arm64 detected..."
if [[ $PLATFORM = arm* ]]; then
echo "arm detected..."
which maturin || pip install maturin
else
echo "Unsupported platform; please install maturin manually"
Expand Down

0 comments on commit 92ecf83

Please sign in to comment.