This commit is contained in:
tuxwarrior
2024-05-01 16:00:36 -05:00
parent 49c8eac6be
commit 3d71eecaef

View File

@@ -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