X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=config%2Fdebian%2Fdinstall.functions;h=ed6f48bcb5c4acf427ca51c0881737dd489b171a;hb=5ebd12fb5f7c54516a8a5f2438294983ff61bd5f;hp=da158a47faa813c1738491cb518085398f98cc27;hpb=b488bb6a14c4376fb533a544d1c24d4ce74a0f5f;p=dak.git diff --git a/config/debian/dinstall.functions b/config/debian/dinstall.functions index da158a47..ed6f48bc 100644 --- a/config/debian/dinstall.functions +++ b/config/debian/dinstall.functions @@ -244,8 +244,9 @@ function copyoverrides() { log 'Copying override files into public view ...' for ofile in ${overridedir}/override.{lenny,squeeze,wheezy,sid}.{,extra.}{main,contrib,non-free}*; do - gzip -9v --rsyncable ${ofile} > ${indices}/${ofile}.gz - chmod g+w ${indices}/${ofile}.gz + bname=${ofile##*/} + gzip -9cv --rsyncable ${ofile} > ${indices}/${bname}.gz + chmod g+w ${indices}/${bname}.gz done }