Skip to content

Commit

Permalink
chore: increase tarball compression
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 23, 2024
1 parent de66eae commit a899155
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/build-tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ if [[ "$os" == "windows" ]]; then
zip -r "$basename.zip" mise
ls -oh "$basename.zip"
else
tar -cJf "$basename.tar.xz" mise
tar -czf "$basename.tar.gz" mise
tar --zstd -cf "$basename.tar.zst" mise
XZ_OPT=-9 tar -acf "$basename.tar.xz" mise
GZIP=-9 tar -acf "$basename.tar.gz" mise
ZSTD_NBTHREADS=4 ZSTD_CLEVEL=19 tar -acf "$basename.tar.zst" mise
ls -oh "$basename.tar.xz"
fi

0 comments on commit a899155

Please sign in to comment.