asdf-deno icon indicating copy to clipboard operation
asdf-deno copied to clipboard

Add support for aarch64 on Linux

Open danberindei opened this issue 1 year ago • 0 comments

Since version 1.40.3, Deno releases include deno-aarch64-unknown-linux-gnu.zip.

asdf-deno doesn't install it because uname -m reports aarch64, but it worked fine with this change:

     case "$(uname -m)" in
       x86_64) architecture="x86_64" ;;
+      aarch64) architecture="aarch64" ;;

danberindei avatar Feb 18 '24 08:02 danberindei