aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavid <public@beloved.name>2018-07-05 23:03:12 +0200
committerdavid <public@beloved.name>2018-07-05 23:03:12 +0200
commitf0c53f5ee7e78a92e1e2ab1e0559edd48951f43f (patch)
tree222c3a026fd1357a91c3118cb57498a7d1521309
parentc01f34aeaf95994f80f5b54cbc0b16c8bd0e7a6a (diff)
Rasised the accepted number of failed downloaded files from 10 to 100.
-rwxr-xr-xdoall.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/doall.sh b/doall.sh
index 63af927..10b4284 100755
--- a/doall.sh
+++ b/doall.sh
@@ -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;