X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Ffilewriter.py;h=b44fc2a5775c0fac1e21cb56af3585c6691a31ab;hb=3f76f67b9d9bf590e2b3d0aac5d015b8d52a6149;hp=8907fa6d96fa39f7c8e2d7163f3c20e4f361bd2e;hpb=e5eec88888cc62587888f6f3cdb06cdb10a609e9;p=dak.git diff --git a/daklib/filewriter.py b/daklib/filewriter.py index 8907fa6d..b44fc2a5 100755 --- a/daklib/filewriter.py +++ b/daklib/filewriter.py @@ -74,11 +74,11 @@ class BaseFileWriter(object): ''' self.file.close() if self.gzip: - check_call('gzip --rsyncable <%s.new >%s.gz.new' % (self.path, self.path), + check_call('gzip -9cn --rsyncable <%s.new >%s.gz.new' % (self.path, self.path), shell = True) self.rename('%s.gz' % self.path) if self.bzip2: - check_call('bzip2 <%s.new >%s.bz2.new' % (self.path, self.path), shell = True) + check_call('bzip2 -9 <%s.new >%s.bz2.new' % (self.path, self.path), shell = True) self.rename('%s.bz2' % self.path) if self.uncompressed: self.rename(self.path)