diff options
-rwxr-xr-x | bin/get-package-updates | 4 |
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 |