diff --git a/src/cmd-compress b/src/cmd-compress index 4fb6ea8c13..6a1c344c6b 100755 --- a/src/cmd-compress +++ b/src/cmd-compress @@ -119,7 +119,7 @@ def compress_one_builddir(builddir): if args.compressor == 'xz': runcmd(['xz', '-c9', f'-T{t}', filepath], stdout=f) elif args.compressor == 'zstd': - runcmd(['zstd', '-19', '-c', f'-T{t}', filepath], stdout=f) + runcmd(['zstd', '-10', '-c', f'-T{t}', filepath], stdout=f) else: runcmd(['gzip', f'-{gzip_level}', '-c', filepath], stdout=f) file_with_ext = file + ext