mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Increase compression on zstd packages
This commit is contained in:
parent
e6d990a44e
commit
280c06425d
1 changed files with 2 additions and 2 deletions
|
@ -343,13 +343,13 @@ def build_tarball(src_path: Path, variant: str) -> None:
|
||||||
subprocess.run(
|
subprocess.run(
|
||||||
[
|
[
|
||||||
"tar",
|
"tar",
|
||||||
"--zstd",
|
"-I",
|
||||||
|
"zstd -c --long -T0 -18",
|
||||||
"-cf",
|
"-cf",
|
||||||
dist_folder / (dest_path.name + ".tar.zst"),
|
dist_folder / (dest_path.name + ".tar.zst"),
|
||||||
dest_path.name,
|
dest_path.name,
|
||||||
],
|
],
|
||||||
check=True,
|
check=True,
|
||||||
env=dict(ZSTD_CLEVEL="9"),
|
|
||||||
cwd=dest_path.parent,
|
cwd=dest_path.parent,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue