diff --git a/init b/init index e9c1576..ca4635e 100755 --- a/init +++ b/init @@ -51,10 +51,8 @@ init_archlinux_archive () { repo="Server=https://archive.archlinux.org/repos/$1/\$repo/os/\$arch" pacman -Syy --quiet - # If repo exists, set it, if not, return False - curl -s "$repo" && echo "$repo" > /etc/pacman.d/mirrorlist || return 1 - - return 0 + # If repo exists, set it + curl -s "$repo" && echo "$repo" > /etc/pacman.d/mirrorlist }