fix: set proper download url for amd64

This commit is contained in:
Sannidhya 2025-02-19 14:11:58 +05:30
parent 4e0070a53b
commit 10b404bb12
No known key found for this signature in database

View file

@ -23,7 +23,9 @@ sleep 1
case "$os_arch" in case "$os_arch" in
x86_64) echo "64-bit (Intel/AMD) architecture identified!" ;; 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" echo "Zen doesn't support this architecture: $os_arch"
exit 1 ;; exit 1 ;;