From 46f3bee2ffd79f628170b998d063f8d60f207798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Mon, 13 Dec 2021 21:10:06 +0100 Subject: [PATCH] core: add build of zst archive in make dist --- tools/makedist.sh | 3 +++ 1 file changed, 3 insertions(+) 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"