Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/deno/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,7 @@ 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
;;
"Linux aarch64") target='aarch64-unknown-linux-gnu' ;;
*) target="x86_64-unknown-linux-gnu" ;;
esac
fi
Expand Down
Loading