summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-04-12 13:38:07 +0200
committerErich Eckner <git@eckner.net>2019-04-12 13:38:07 +0200
commit4ee0c258069cb2f71b37e562b8994bc1165b9441 (patch)
tree2cdbcc35e95f15b18d4f9fbf8992625044d449bf /bin
parent9f902ea9738f0049b94efbced75a560dc145ac1c (diff)
downloadbuilder-4ee0c258069cb2f71b37e562b8994bc1165b9441.tar.xz
bin/get-package-updates: increase threashold of allowed blacklisted packages to 2k
Diffstat (limited to 'bin')
-rwxr-xr-xbin/get-package-updates4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/get-package-updates b/bin/get-package-updates
index 708b5ff..c74d36f 100755
--- a/bin/get-package-updates
+++ b/bin/get-package-updates
@@ -533,8 +533,8 @@ deletion_list_count=$(
wc -l < \
"${tmp_dir}/black-listed"
)
-if [ "${deletion_list_count}" -gt 1000 ]; then
- >&2 printf 'There are %s > 1000 packages on the deletion-list. This does not seem right.\n' \
+if [ "${deletion_list_count}" -gt 2000 ]; then
+ >&2 printf 'There are %s > 2000 packages on the deletion-list. This does not seem right.\n' \
"${deletion_list_count}"
if [ ! -s "${work_dir}/told-irc-about-too-many-deletion-list-packages" ]; then
# shellcheck disable=SC2119