From 99f1a7f6e1784cf332d3a50d6fdbfbd6a94430be Mon Sep 17 00:00:00 2001 From: Buddy Date: Sun, 13 Sep 2026 22:36:22 -0700 Subject: [PATCH] fix: install-deno target triple missing arch prefix deno's release assets now include the arch in the filename (deno-x86_64-unknown-linux-gnu.zip), so the old "unknown-linux-gnu" string 404'd once the pinned version moved past when deno made that change. Also adds the missing aarch64-linux case. --- dot_local/bin/executable_install-deno | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dot_local/bin/executable_install-deno b/dot_local/bin/executable_install-deno index d34ecc9..06f2be0 100755 --- a/dot_local/bin/executable_install-deno +++ b/dot_local/bin/executable_install-deno @@ -9,7 +9,8 @@ function get_os () ( case $(uname -sm) in "Darwin x86_64") echo x86_64-apple-darwin ;; "Darwin arm64") echo aarch64-apple-darwin ;; - "Linux x86_64") echo unknown-linux-gnu ;; + "Linux x86_64") echo x86_64-unknown-linux-gnu ;; + "Linux aarch64") echo aarch64-unknown-linux-gnu ;; *) >&2 echo "unsupported os: $(uname -s)"; exit 1;; esac )