aboutsummaryrefslogtreecommitdiff
path: root/portable
diff options
context:
space:
mode:
Diffstat (limited to 'portable')
-rw-r--r--portable/Dockerfile2
-rwxr-xr-xportable/build.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/portable/Dockerfile b/portable/Dockerfile
index 096192a..afe33d7 100644
--- a/portable/Dockerfile
+++ b/portable/Dockerfile
@@ -19,7 +19,7 @@ ENV SOURCE_DIR=/jellyfin
ENV ARTIFACT_DIR=/dist
ENV TYPE=${PACKAGE_TYPE}
ENV VERSION=${PACKAGE_VERSION}
-ENV ARCHIVE_TYPES=tar
+ENV ARCHIVE_TYPES=targz
# Prepare Debian build environment
RUN apt-get update -y \
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