diff options
-rwxr-xr-x | doall.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -51,7 +51,8 @@ for (( i=0; i<10; i++ )); do done -if [[ $(find metadata.ftp-master.debian.org -type f |wc -l) -lt $(( $(wc -l <downloadlist) - 10)) ]]; then +# Email with subject "Missing stable_copyright and stable_changelog files" sent to admin@db.debian.org 2018-07-05. 30 files were missing at the time of writing. +if [[ $(find metadata.ftp-master.debian.org -type f |wc -l) -lt $(( $(wc -l <downloadlist) - 100)) ]]; then echo "$0: error: failed to download enough files"; exit 1; |