Pārlūkot izejas kodu

Remove web frontend build from docker-build.sh

This is now handled in the RPM spec.
Joshua Boniface 5 gadi atpakaļ
vecāks
revīzija
c30866fc93
1 mainītis faili ar 0 papildinājumiem un 14 dzēšanām
  1. 0 14
      deployment/fedora-package-x64/docker-build.sh

+ 0 - 14
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."