diff options
-rwxr-xr-x | bin/get-package-updates | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/get-package-updates b/bin/get-package-updates index 6f10c39..b88b4cf 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -479,7 +479,7 @@ if [ -s "${tmp_dir}/modified-packages" ] || ! ${pull}; then t d ' | \ - sort -u | \ + expand_blacklist_architectures "${tmp_dir}/architecture-compatibilities" | \ if [ -s "${tmp_dir}/modified-packages" ]; then sort -k2,2 | \ join -1 1 -2 2 -o 2.1,2.2 "${tmp_dir}/modified-packages" - @@ -495,6 +495,7 @@ if [ -s "${tmp_dir}/modified-packages" ] || ! ${pull}; then while read -r arch pkgbase; do delete_package "${arch}" "${pkgbase}" done + rm "${tmp_dir}/architecture-compatibilities" fi echo 'Done - mark decisions as final.' |