aboutsummaryrefslogtreecommitdiff
path: root/portable/build.sh
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-03 01:47:02 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-03-03 01:47:02 -0500
commit48c298bc267bdcc073c0bf568dc65eba13487856 (patch)
tree08ebae69badc43ae2e0f0f1d0f69dcc37f8dd8a6 /portable/build.sh
parentFix another bad variable reference (diff)
downloadjellyfin-packaging-48c298bc267bdcc073c0bf568dc65eba13487856.tar.gz
jellyfin-packaging-48c298bc267bdcc073c0bf568dc65eba13487856.tar.bz2
jellyfin-packaging-48c298bc267bdcc073c0bf568dc65eba13487856.zip
Add tar.xz archives
Diffstat (limited to 'portable/build.sh')
-rwxr-xr-xportable/build.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/portable/build.sh b/portable/build.sh
index 9259800..e5cc731 100755
--- a/portable/build.sh
+++ b/portable/build.sh
@@ -48,6 +48,9 @@ for ARCHIVE_TYPE in $( tr ',' '\n' <<<"${ARCHIVE_TYPES}" ); do
targz)
tar -czf "${ARTIFACT_DIR}"/jellyfin_${VERSION_SUFFIX}.tar.gz .
;;
+ tarxz)
+ tar -czf "${ARTIFACT_DIR}"/jellyfin_${VERSION_SUFFIX}.tar.xz .
+ ;;
zip)
zip -qr "${ARTIFACT_DIR}"/jellyfin_${VERSION_SUFFIX}.zip .
;;
bgstack15