diff --git a/src/deno/devcontainer-feature.json b/src/deno/devcontainer-feature.json index b40fdbfc1..c6b5bd4fe 100644 --- a/src/deno/devcontainer-feature.json +++ b/src/deno/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "Deno (via Github Releases)", "id": "deno", - "version": "1.0.3", + "version": "1.0.4", "description": "Deno is a simple, modern runtime for JavaScript and TypeScript that uses V8 and is built in Rust.", "documentationURL": "https://github.com/devcontainers-extra/features/tree/main/src/deno", "options": { diff --git a/src/deno/install.sh b/src/deno/install.sh index e9f96854e..d06bee329 100755 --- a/src/deno/install.sh +++ b/src/deno/install.sh @@ -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