summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-12-13 21:10:06 +0100
committerSébastien Helleu <flashcode@flashtux.org>2021-12-13 21:10:06 +0100
commit46f3bee2ffd79f628170b998d063f8d60f207798 (patch)
treebdbbc6bf59513eef8068f3ee682c8db372baabec
parentd80b27af646a63d9366beb380af79d4be11c24e9 (diff)
downloadweechat-46f3bee2ffd79f628170b998d063f8d60f207798.zip
core: add build of zst archive in make dist
-rwxr-xr-xtools/makedist.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/makedist.sh b/tools/makedist.sh
index 4f750d9af..65465094e 100755
--- a/tools/makedist.sh
+++ b/tools/makedist.sh
@@ -75,3 +75,6 @@ git archive --prefix="${PREFIX}" "${TREEISH}" | bzip2 -c >"${FILE}.bz2"
echo "Building package ${FILE}.xz"
git archive --prefix="${PREFIX}" "${TREEISH}" | xz -c >"${FILE}.xz"
+
+echo "Building package ${FILE}.zst"
+git archive --prefix="${PREFIX}" "${TREEISH}" | zstd -c -15 >"${FILE}.zst"