diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-03-03 01:47:02 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-03-03 01:47:02 -0500 |
commit | 48c298bc267bdcc073c0bf568dc65eba13487856 (patch) | |
tree | 08ebae69badc43ae2e0f0f1d0f69dcc37f8dd8a6 /portable | |
parent | Fix another bad variable reference (diff) | |
download | jellyfin-packaging-48c298bc267bdcc073c0bf568dc65eba13487856.tar.gz jellyfin-packaging-48c298bc267bdcc073c0bf568dc65eba13487856.tar.bz2 jellyfin-packaging-48c298bc267bdcc073c0bf568dc65eba13487856.zip |
Add tar.xz archives
Diffstat (limited to 'portable')
-rwxr-xr-x | portable/build.sh | 3 |
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 . ;; |