From fe8853a4660efeaff7106f73622d3c91617fd6aa Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 16 Feb 2024 03:31:22 -0500 Subject: Make gzip explicit in archive types Might add "tarxz" or similar some day, so make it explicit. --- portable/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'portable/build.sh') diff --git a/portable/build.sh b/portable/build.sh index c979805..66521f7 100755 --- a/portable/build.sh +++ b/portable/build.sh @@ -45,7 +45,7 @@ fi pushd ${BUILD_DIR} for ARCHIVE_TYPE in $( tr ',' '\n' <<<"${ARCHIVE_TYPES}" ); do case ${ARCHIVE_TYPE} in - tar) + targz) tar -czf "${ARTIFACT_DIR}"/jellyfin_${VERSION_SUFFIX}.tar.gz . ;; zip) -- cgit