aboutsummaryrefslogtreecommitdiff
path: root/deployment/macos
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/macos')
-rw-r--r--deployment/macos/Dockerfile1
-rwxr-xr-xdeployment/macos/docker-build.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/deployment/macos/Dockerfile b/deployment/macos/Dockerfile
index 406a2d853..63f599fbe 100644
--- a/deployment/macos/Dockerfile
+++ b/deployment/macos/Dockerfile
@@ -9,6 +9,7 @@ ENV SOURCE_DIR=/jellyfin
ENV ARTIFACT_DIR=/dist
ENV DEB_BUILD_OPTIONS=noddebs
ENV ARCH=amd64
+ENV web_branch=release-10.4.z
# Prepare Debian build environment
RUN apt-get update \
diff --git a/deployment/macos/docker-build.sh b/deployment/macos/docker-build.sh
index 1b4a554e6..af11214ee 100755
--- a/deployment/macos/docker-build.sh
+++ b/deployment/macos/docker-build.sh
@@ -14,7 +14,7 @@ web_target="${SOURCE_DIR}/MediaBrowser.WebDashboard/jellyfin-web"
git clone https://github.com/jellyfin/jellyfin-web.git ${web_build_dir}/
pushd ${web_build_dir}
if [[ -n ${web_branch} ]]; then
- checkout -b origin/${web_branch}
+ git checkout origin/${web_branch}
fi
yarn install
mkdir -p ${web_target}