From 512a26ffeff50052d81d3c703f724214205d5153 Mon Sep 17 00:00:00 2001 From: Alexandre CATTEAU Date: Tue, 9 Jan 2024 09:41:01 +0100 Subject: [PATCH] Add kodi libretro debug packages to check exclusion list --- update-repo.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/update-repo.sh b/update-repo.sh index 6724c75..469619a 100755 --- a/update-repo.sh +++ b/update-repo.sh @@ -126,6 +126,12 @@ checkUpdates() { continue 1 fi + reg="(kodi-addon-game-libretro).+-((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