aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-03 01:46:51 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-03-03 01:46:51 -0500
commit5eee21bdde691614b9078aaa73c041f34df279a3 (patch)
tree3ca051c94f625244e37f6106a7a930cc972ea1b5
parentRevert "Reenable Ubuntu 24.04 noble" (diff)
downloadjellyfin-packaging-5eee21bdde691614b9078aaa73c041f34df279a3.tar.gz
jellyfin-packaging-5eee21bdde691614b9078aaa73c041f34df279a3.tar.bz2
jellyfin-packaging-5eee21bdde691614b9078aaa73c041f34df279a3.zip
Fix another bad variable reference
-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