Skip to content

Commit

Permalink
fix: block installation on arm64 (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
noxifoxi authored Jun 24, 2022
1 parent cb92562 commit 1ce537f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ else
case $(uname -sm) in
"Darwin x86_64") target="x86_64-apple-darwin" ;;
"Darwin arm64") target="aarch64-apple-darwin" ;;
"Linux aarch64")
echo "Error: Official Deno builds for Linux aarch64 are not available. (https://github.com/denoland/deno/issues/1846)" 1>&2
exit 1
;;
*) target="x86_64-unknown-linux-gnu" ;;
esac
fi
Expand Down

0 comments on commit 1ce537f

Please sign in to comment.