From f5dff7ab01d1a112c8bd170100f226168ce4b6e6 Mon Sep 17 00:00:00 2001 From: Matthias Reichl Date: Sat, 16 Jan 2021 09:49:05 +0100 Subject: [PATCH] tools/mkpkg/update_binary-addons: exclude vfs.sacd vfs.sacd has been deprecated in favour of audiodecoder.sacd and removed from official kodi binary repo. Add it to the exclude list until we finally remove the package so the update script won't switch the version from tag to githash. Signed-off-by: Matthias Reichl --- tools/mkpkg/update_binary-addons | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkpkg/update_binary-addons b/tools/mkpkg/update_binary-addons index 1218a83c27..5fd1b67dd4 100755 --- a/tools/mkpkg/update_binary-addons +++ b/tools/mkpkg/update_binary-addons @@ -46,7 +46,7 @@ if [ $# -eq 0 -o $# -gt 2 ]; then fi # list of packages to exclude from update -EXCLUDED_PACKAGES="" +EXCLUDED_PACKAGES="vfs.sacd" MY_DIR="$(dirname "$0")" ROOT="$(cd "${MY_DIR}"/../.. && pwd)"