/ less verbose output

This commit is contained in:
committer
2024-08-17 15:01:27 -05:00
parent d363186f7d
commit 711ed81c67

View File

@@ -89,19 +89,20 @@ do_update() {
do do
if [[ $installed == $x ]] if [[ $installed == $x ]]
then then
echo "Skipping (1) $x" :
#echo "Skipping (1) $x"
else else
if [[ $(echo "$installed" | grep -E -o "^$x$") != $x ]] then if [[ $(echo "$installed" | grep -E -o "^$x$") != $x ]] then
if [[ "$x" =~ ^aur:* ]]; then if [[ "$x" =~ ^aur:* ]]; then
x=${x:4} x=${x:4}
echo "Adding $x to AUR list" # echo "Adding $x to AUR list"
list_aur+="$x " list_aur+="$x "
else else
echo "Adding $x to Arch list" echo "Adding $x to Arch list"
list+="$x " list+="$x "
fi fi
else #else
echo "Skipping (2) $x" # echo "Skipping (2) $x"
fi fi
fi fi
done done