aboutsummaryrefslogtreecommitdiff
path: root/portable/build.sh
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-16 03:31:22 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-16 03:31:22 -0500
commitfe8853a4660efeaff7106f73622d3c91617fd6aa (patch)
tree181ae424646011aa15ba8dfc9fcd8121efeff435 /portable/build.sh
parentReorder Debian releases (diff)
downloadjellyfin-packaging-fe8853a4660efeaff7106f73622d3c91617fd6aa.tar.gz
jellyfin-packaging-fe8853a4660efeaff7106f73622d3c91617fd6aa.tar.bz2
jellyfin-packaging-fe8853a4660efeaff7106f73622d3c91617fd6aa.zip
Make gzip explicit in archive types
Might add "tarxz" or similar some day, so make it explicit.
Diffstat (limited to 'portable/build.sh')
-rwxr-xr-xportable/build.sh2
1 files changed, 1 insertions, 1 deletions
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)
bgstack15