From fe30b5cce3f2dc922aeb6914bca36eafa609514f Mon Sep 17 00:00:00 2001 From: Jerome Charaoui Date: Sat, 2 Jan 2021 13:32:15 -0500 Subject: [PATCH] tar: add support from zstd compression filter --- handlers/tar.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/handlers/tar.in b/handlers/tar.in index 29c525c..afe3e8b 100644 --- a/handlers/tar.in +++ b/handlers/tar.in @@ -52,6 +52,10 @@ case $compress in compress_option="-J" EXTENSION="tar.xz" ;; + "zstd") + compress_option="--zstd" + EXTENSION="tar.zst" + ;; "none") compress_option="" ;;