From 280c06425db795a7389acf3c9b248c34b1781d63 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 22 Apr 2022 13:52:24 +1000 Subject: [PATCH] Increase compression on zstd packages --- qt/bundle/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt/bundle/build.py b/qt/bundle/build.py index b21294f53..72627ef97 100644 --- a/qt/bundle/build.py +++ b/qt/bundle/build.py @@ -343,13 +343,13 @@ def build_tarball(src_path: Path, variant: str) -> None: subprocess.run( [ "tar", - "--zstd", + "-I", + "zstd -c --long -T0 -18", "-cf", dist_folder / (dest_path.name + ".tar.zst"), dest_path.name, ], check=True, - env=dict(ZSTD_CLEVEL="9"), cwd=dest_path.parent, )