Skip to content

Commit e4fe191

Browse files
committed
fix: set proper download url for amd64
1 parent 086df76 commit e4fe191

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

install-as-root.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ sleep 1
2929

3030
case "$os_arch" in
3131
x86_64) echo "64-bit (Intel/AMD) architecture identified!" ;;
32-
aarch64|arm64) echo "64-bit ARM architecture identified!" ;;
32+
aarch64|arm64)
33+
echo "64-bit ARM architecture identified!"
34+
official_package_location="https://github.com/zen-browser/desktop/releases/latest/download/zen.linux-aarch64.tar.xz" ;;
3335
*)
3436
echo "Zen doesn't support this architecture: $os_arch"
3537
exit 1 ;;

0 commit comments

Comments
 (0)