From c30866fc934b393e37c58af718288318a8e9a058 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Sun, 20 Oct 2019 11:18:12 -0400 Subject: [PATCH] Remove web frontend build from docker-build.sh This is now handled in the RPM spec. --- deployment/fedora-package-x64/docker-build.sh | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/deployment/fedora-package-x64/docker-build.sh b/deployment/fedora-package-x64/docker-build.sh index 014f582f08..eca3a28a63 100755 --- a/deployment/fedora-package-x64/docker-build.sh +++ b/deployment/fedora-package-x64/docker-build.sh @@ -10,20 +10,6 @@ pushd ${SOURCE_DIR} VERSION="$( grep '^Version:' ${SOURCE_DIR}/SOURCES/pkg-src/jellyfin.spec | awk '{ print $NF }' )" -# Clone down and build Web frontend -web_build_dir="$( mktemp -d )" -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} -fi -yarn install -mkdir -p ${web_target} -mv dist/* ${web_target}/ -popd -rm -rf ${web_build_dir} - # Create RPM source archive GNU_TAR=1 echo "Bundling all sources for RPM build."