Skip to content

Commit 60f7150

Browse files
authored
Merge pull request #197 from razzeee/linux-aarch
Deno: Linux aarch64 sources are supplied
2 parents a9d4dbd + a7e750e commit 60f7150

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/deno/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Deno (via Github Releases)",
33
"id": "deno",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"description": "Deno is a simple, modern runtime for JavaScript and TypeScript that uses V8 and is built in Rust.",
66
"documentationURL": "https://github.com/devcontainers-extra/features/tree/main/src/deno",
77
"options": {

src/deno/install.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ else
1818
case $(uname -sm) in
1919
"Darwin x86_64") target="x86_64-apple-darwin" ;;
2020
"Darwin arm64") target="aarch64-apple-darwin" ;;
21-
"Linux aarch64")
22-
echo "Error: Official Deno builds for Linux aarch64 are not available. (https://github.com/denoland/deno/issues/1846)" 1>&2
23-
exit 1
24-
;;
21+
"Linux aarch64") target='aarch64-unknown-linux-gnu' ;;
2522
*) target="x86_64-unknown-linux-gnu" ;;
2623
esac
2724
fi

0 commit comments

Comments
 (0)