From 711ed81c67b6515b03b2e988c405a2bc8240cca3 Mon Sep 17 00:00:00 2001 From: committer Date: Sat, 17 Aug 2024 15:01:27 -0500 Subject: [PATCH] / less verbose output --- scripts/99_software.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/99_software.sh b/scripts/99_software.sh index a7feeb2..21fa9dc 100644 --- a/scripts/99_software.sh +++ b/scripts/99_software.sh @@ -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