From: Joerg Jaspert Date: Sun, 30 Aug 2015 21:21:38 +0000 (+0200) Subject: Also ignore non-existant unpacked Content files when checking release files X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=c9ca62268c8358315ba45818291c9b0fdc475a2d Also ignore non-existant unpacked Content files when checking release files Signed-off-by: Joerg Jaspert --- diff --git a/config/debian/dinstall.functions b/config/debian/dinstall.functions index 6abf1b84..f4babb00 100644 --- a/config/debian/dinstall.functions +++ b/config/debian/dinstall.functions @@ -458,7 +458,7 @@ function mirrorpush() { while read SHASUM SIZE NAME; do if ! [ -f "${subdir}/${NAME}" ]; then bname=$(basename ${NAME}) - if [[ "${bname}" =~ ^(Packages|Sources|Translation-[a-zA-Z_]+)$ ]]; then + if [[ "${bname}" =~ ^(Packages|Sources|Contents-[a-zA-Z0-9-]|Translation-[a-zA-Z_]+)$ ]]; then # We don't keep unpacked files, don't check for their existance. # We might want to go and check their unpacked shasum, but right now # I don't care. I believe it should be enough if all the packed shasums