X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=bin%2Fextract_changelogs;h=7d6f3e4769bafb894f7469b1b5c26443db6b2c80;hb=11d08c95c0b38b80f9595b56121a95744d63b03b;hp=08be087d36fadde7f5a6cbbf05e7c702a4374e07;hpb=e869cc49fe3143487be56136b0b25904ac2ee154;p=deb%2Fpackages.git diff --git a/bin/extract_changelogs b/bin/extract_changelogs index 08be087..7d6f3e4 100755 --- a/bin/extract_changelogs +++ b/bin/extract_changelogs @@ -26,21 +26,29 @@ fi ( date +successful=1 for part in $parts; do time "${bindir}/extract_files" -v -d "${localdir}/pool/$part/" \ -t "${htmldir}/changelogs/pool/$part/" \ -c "$configdir" -w "$tmpdir" \ --dumpfile "${filesdir}/changelogs.$part.dump" \ - --cachefile "${filesdir}/changelogs.cache" + --cachefile "${filesdir}/changelogs.cache" --debug + if [ $? -ne 0 ]; then + echo program exited with non-zero exitcode: $? >&2 + successful=0 + fi done -find "${htmldir}/changelogs/" -name log -cmin +7200 \ - | while read logfile; do - dir=$(dirname "$logfile") +if [ "$successful" -eq 1 ]; then + find "${htmldir}/changelogs/" -name log -cmin +14440 \ + | while read logfile; do + dir=$(dirname "$logfile") echo deleting $dir rm -r "$dir" rmdir --ignore-fail-on-non-empty $(dirname "$dir") -done - + done +else + echo clean-up skipped because at least one of the extraction runs failed >&2 +fi date ) > $log 2>&1