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