/ 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
if [[ $installed == $x ]]
then
echo "Skipping (1) $x"
:
#echo "Skipping (1) $x"
else
if [[ $(echo "$installed" | grep -E -o "^$x$") != $x ]] then
if [[ "$x" =~ ^aur:* ]]; then
x=${x:4}
echo "Adding $x to AUR list"
# echo "Adding $x to AUR list"
list_aur+="$x "
else
echo "Adding $x to Arch list"
list+="$x "
fi
else
echo "Skipping (2) $x"
#else
# echo "Skipping (2) $x"
fi
fi
done