From 10b404bb12a296d86af8967daf094161bdb35c60 Mon Sep 17 00:00:00 2001 From: Sannidhya <58990408+sannidhyaroy@users.noreply.github.com> Date: Wed, 19 Feb 2025 14:11:58 +0530 Subject: [PATCH] `fix`: set proper download url for amd64 --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 20036fc..89a1e35 100644 --- a/install.sh +++ b/install.sh @@ -23,7 +23,9 @@ sleep 1 case "$os_arch" in x86_64) echo "64-bit (Intel/AMD) architecture identified!" ;; - aarch64|arm64) echo "64-bit ARM architecture identified!" ;; + aarch64|arm64) + echo "64-bit ARM architecture identified!" + official_package_location="https://github.com/zen-browser/desktop/releases/latest/download/zen.linux-aarch64.tar.xz" ;; *) echo "Zen doesn't support this architecture: $os_arch" exit 1 ;;