summaryrefslogtreecommitdiff
path: root/bin/get-package-updates
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-08-21 11:11:52 +0200
committerErich Eckner <git@eckner.net>2019-08-21 11:11:52 +0200
commit3cd0039964d6702490c3a40d3cee5d5806ee2327 (patch)
tree5d8411c08ac4a8abca3197fded9b68da8aa7aba2 /bin/get-package-updates
parent71b69213b1600694a3dac25c062f9f39a6b0f143 (diff)
downloadbuilder-3cd0039964d6702490c3a40d3cee5d5806ee2327.tar.xz
bin/get-package-updates: blacklist architectures need expansion
Diffstat (limited to 'bin/get-package-updates')
-rwxr-xr-xbin/get-package-updates3
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.'