aboutsummaryrefslogtreecommitdiff
path: root/portable
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-03 01:21:34 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-03-03 01:21:34 -0500
commit3c2d6f871b33ace939e35c8e3891bc820d925477 (patch)
tree9b5cf8f53ca132ee4062e53049d440777add6da0 /portable
parentFix incorrect incoming paths (diff)
downloadjellyfin-packaging-3c2d6f871b33ace939e35c8e3891bc820d925477.tar.gz
jellyfin-packaging-3c2d6f871b33ace939e35c8e3891bc820d925477.tar.bz2
jellyfin-packaging-3c2d6f871b33ace939e35c8e3891bc820d925477.zip
Fix incorrect variable name
Diffstat (limited to 'portable')
-rwxr-xr-xportable/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/portable/build.sh b/portable/build.sh
index 66521f7..bfa61eb 100755
--- a/portable/build.sh
+++ b/portable/build.sh
@@ -14,7 +14,7 @@ pushd "${SOURCE_DIR}"
# Build server
pushd jellyfin-server
-case ${BTYPE} in
+case ${BUILD_TYPE} in
portable)
RUNTIME=""
APPHOST="-p:UseAppHost=false"
bgstack15