Add support for Arch Linux ARM in setup.sh (#1672)

Technically Arch Linux ARM is a separate distro from the x86_64 Arch Linux, but it uses pcaman and the same package names. So it installs just fine, just needs to be detected properly.
pull/1674/head
Albert Koczy 3 years ago committed by GitHub
parent 65b70c5faa
commit d3b1a91c1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -134,7 +134,7 @@ if linux; then
"opensuse-leap")
install_zypper
;;
"arch" | "endeavouros" | "manjaro")
"arch" | "archarm" | "endeavouros" | "manjaro")
install_pacman
echo "Logging off and in or conducting a power cycle is required to get debuginfod to work."
echo "Alternatively you can manually set the environment variable: DEBUGINFOD_URLS=https://debuginfod.archlinux.org"
@ -157,7 +157,7 @@ if linux; then
elif hash dnf; then
install_dnf
else
echo "\"$distro\" is not supported and your distro don't have apt or dnf that we support currently."
echo "\"$distro\" is not supported and your distro don't have a package manager that we support currently."
exit
fi
;;

Loading…
Cancel
Save