From 1ce537f27949edb41783d9b5078b12a152f73ba7 Mon Sep 17 00:00:00 2001 From: Foxi <293639+noxifoxi@users.noreply.github.com> Date: Fri, 24 Jun 2022 17:43:56 +0200 Subject: [PATCH] fix: block installation on arm64 (#210) --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index 1fd0725..d097aa0 100755 --- a/install.sh +++ b/install.sh @@ -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