From 0a67dc9468831c0703f90ecb238e6b1f2d0bf70d Mon Sep 17 00:00:00 2001 From: Alexandre CATTEAU Date: Sat, 18 Jan 2025 13:34:21 +0100 Subject: [PATCH] Update exception rules --- update-repo.sh | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/update-repo.sh b/update-repo.sh index 01afab2..75ba742 100755 --- a/update-repo.sh +++ b/update-repo.sh @@ -132,17 +132,23 @@ checkUpdates() { continue 1 fi - if echo $exlist | grep -w $name > /dev/null; then - echo -e "\nSkipping $name ($version, temporary exception)." - continue 1 - fi - reg="(package-query-debug)" if [[ $name =~ $reg ]]; then echo -e "\nSkipping $name ($version, default exception)." continue 1 fi + reg="(finamp-bin-debug)" + if [[ $name =~ $reg ]]; then + echo -e "\nSkipping $name ($version, default exception)." + continue 1 + fi + + if echo $exlist | grep -w $name > /dev/null; then + echo -e "\nSkipping $name ($version, temporary exception)." + continue 1 + fi + echo -e "\nChecking $name ($version)..." aur_version=$(package-query -A -f %v $name)