aboutsummaryrefslogtreecommitdiff
path: root/portable/build.sh
diff options
context:
space:
mode:
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