Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2725 from emphasize/add_arch_variants_to_devsetup
Browse files Browse the repository at this point in the history
allow variants of arch (archarm, ...) to fetch dependencies (dev_setup.sh)
  • Loading branch information
krisgesling authored Oct 16, 2020
2 parents 58415e7 + 0df9e40 commit bee3b8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -398,14 +398,14 @@ function install_deps() {
# Fedora
echo "$GREEN Installing packages for Fedora...$RESET"
fedora_install
elif found_exe pacman && os_is arch ; then
elif found_exe pacman && (os_is arch || os_is_like arch); then
# Arch Linux
echo "$GREEN Installing packages for Arch...$RESET"
arch_install
elif found_exe emerge && os_is gentoo; then
# Gentoo Linux
echo "$GREEN Installing packages for Gentoo Linux ...$RESET"
gentoo_install
gentoo_install
elif found_exe apk && os_is alpine; then
# Alpine Linux
echo "$GREEN Installing packages for Alpine Linux...$RESET"
Expand Down

0 comments on commit bee3b8c

Please sign in to comment.