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 <hias@horus.com>
This commit is contained in:
Matthias Reichl 2021-01-16 09:49:05 +01:00
parent 2690bfb7a7
commit f5dff7ab01

View File

@ -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)"