diff options
| author | Blake Romero <blake@blkrom.com> | 2024-03-30 22:28:16 +0000 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2024-03-30 22:28:16 +0000 |
| commit | aa288bb26dc4dda622689429080a51b46231e8e7 (patch) | |
| tree | 31b0a7a9645a1cfd1db76f7f771c26352fc27d58 | |
| parent | d0681f230c416a172276a2d1a27b7dd8f8968de0 (diff) | |
Update arch support & AUR helper error messages
| -rwxr-xr-x | install-artix.sh | 4 |
1 files 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 |
