From aa288bb26dc4dda622689429080a51b46231e8e7 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Sat, 30 Mar 2024 22:28:16 +0000 Subject: Update arch support & AUR helper error messages --- install-artix.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-artix.sh b/install-artix.sh index 92a14d4..b398ef1 100755 --- a/install-artix.sh +++ b/install-artix.sh @@ -318,7 +318,7 @@ Include = /etc/pacman.d/mirrorlist-arch # Download Arch Linux support artix-chroot /mnt bash -c \ "pacman --noconfirm -Syy artix-archlinux-support" \ - || { echo "Error downloading artix-archlinux-support"; exit; } + || { echo "Error installing artix-archlinux-support"; exit; } # Update keys artix-chroot /mnt bash -c "pacman-key --populate archlinux" @@ -329,7 +329,7 @@ fi # Install AUR helper if [[ "${enable_aur}" == true ]]; then artix-chroot /mnt bash -c "pacman --noconfirm -Syy trizen" \ - || { echo "Error downloading trizen AUR helper"; exit; } + || { echo "Error installing trizen AUR helper"; exit; } echo "AUR helper installation complete!" fi -- cgit