aboutsummaryrefslogtreecommitdiff
path: root/portable
diff options
context:
space:
mode:
Diffstat (limited to 'portable')
-rwxr-xr-xportable/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/portable/build.sh b/portable/build.sh
index bfa61eb..9259800 100755
--- a/portable/build.sh
+++ b/portable/build.sh
@@ -37,9 +37,9 @@ popd
mkdir -p "${ARTIFACT_DIR}/"
if [[ -n ${PACKAGE_ARCH} ]]; then
- VERSION_SUFFIX="${JVERS}-${PACKAGE_ARCH}"
+ VERSION_SUFFIX="${JELLYFIN_VERSION}-${PACKAGE_ARCH}"
else
- VERSION_SUFFIX="${JVERS}"
+ VERSION_SUFFIX="${JELLYFIN_VERSION}"
fi
pushd ${BUILD_DIR}
bgstack15