diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-03-03 01:21:34 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-03-03 01:21:34 -0500 |
commit | 3c2d6f871b33ace939e35c8e3891bc820d925477 (patch) | |
tree | 9b5cf8f53ca132ee4062e53049d440777add6da0 | |
parent | Fix incorrect incoming paths (diff) | |
download | jellyfin-packaging-3c2d6f871b33ace939e35c8e3891bc820d925477.tar.gz jellyfin-packaging-3c2d6f871b33ace939e35c8e3891bc820d925477.tar.bz2 jellyfin-packaging-3c2d6f871b33ace939e35c8e3891bc820d925477.zip |
Fix incorrect variable name
-rwxr-xr-x | portable/build.sh | 2 |
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" |