From 4cf1ec6f17c0eec699ef861273f7bcf32b7ea60b Mon Sep 17 00:00:00 2001 From: Kolja Date: Wed, 21 Jan 2026 10:10:23 +0100 Subject: [PATCH 1/2] Deno: Linux aarch64 sources are supplied Don't error out on linux aarch64 Signed-off-by: Kolja --- src/deno/install.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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 From a7e750e045ed66e2a0508ca93436172698330eff Mon Sep 17 00:00:00 2001 From: Razze Date: Sat, 24 Jan 2026 17:11:45 +0100 Subject: [PATCH 2/2] Bump deno feature version to 1.0.4 --- src/deno/devcontainer-feature.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": {