Skip to content

Commit bd139cb

Browse files
committed
scripts/rsync-generation/mksnapshot: increase zstd compression level
Using -9 we end up at 58MB, which is more than gzip2's 57MB. So up the level to -19 (the max, basically like how we configure the other compressors too) to get 52MB, which is still much more than xz (48MB) and lzip (47MB). Signed-off-by: Fabian Groffen <[email protected]>
1 parent 34687be commit bd139cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/rsync-generation/mksnapshot.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ COMPRS=(
4949
"bz2:bzip2 -c -9"
5050
"xz:xz -c -9"
5151
"lz:lzip -c -9"
52-
"zst:zstd -c -k -f -9"
52+
"zst:zstd -c -19"
5353
)
5454

5555
# produce compressed variants, use as much cpu as left on the system, do

0 commit comments

Comments
 (0)