From 3d71eecaef64130546e83ba2db52b4e8aad02610 Mon Sep 17 00:00:00 2001 From: tuxwarrior Date: Wed, 1 May 2024 16:00:36 -0500 Subject: [PATCH] u --- scripts/99_software.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/99_software.sh b/scripts/99_software.sh index dc91261..bc9dbc5 100644 --- a/scripts/99_software.sh +++ b/scripts/99_software.sh @@ -81,9 +81,10 @@ if [ ${operation} == "update" ] ; then then if [[ $(echo "$installed" | grep -E -o "^$x$") != $x ]] then if [[ "$x" =~ ^aur:* ]]; then - echo "Adding $x to aur list" + x=${x:4} + echo "Adding $x to AUR list" else - echo "Adding $x to normal list" + echo "Adding $x to Arch list" list+="$x " fi else @@ -98,7 +99,7 @@ if [ ${operation} == "update" ] ; then echo $list #pacman -S --needed --noconfirm $list else - echo "Nothing to install" + echo "No Arch packages to install" fi