diff options
author | david <public@beloved.name> | 2018-07-05 23:03:12 +0200 |
---|---|---|
committer | david <public@beloved.name> | 2018-07-05 23:03:12 +0200 |
commit | f0c53f5ee7e78a92e1e2ab1e0559edd48951f43f (patch) | |
tree | 222c3a026fd1357a91c3118cb57498a7d1521309 | |
parent | c01f34aeaf95994f80f5b54cbc0b16c8bd0e7a6a (diff) |
Rasised the accepted number of failed downloaded files from 10 to 100.
-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; |