496a76ea8ab70a03a4d777e22f9526245cf86578 maximilianh Thu May 1 02:08:25 2025 +0200 moving back to master branch on gbic build diff --git src/product/installer/browserSetup.sh src/product/installer/browserSetup.sh index ea76d776ada..be6588eaeac 100644 --- src/product/installer/browserSetup.sh +++ src/product/installer/browserSetup.sh @@ -1503,34 +1503,36 @@ # and it is safe to write into it touch "$APACHEDIR"/.madeByBrowserBuild } # set this machine for browser development: install required tools, clone the tree, build it function buildTree () { if [[ "$DIST" == "OSX" ]]; then setupBuildOsx else setupBuildLinux fi if [ ! -e ~/kent ]; then echo2 Cloning kent repo into ~/kent using git with --depth=1 - echo2 Branch is: \"beta\" = our current release, beta = testing + #echo2 Branch is: \"beta\" = our current release, beta = testing waitKey cd ~ - git clone -b beta https://github.com/ucscGenomeBrowser/kent.git --depth=1 + #git clone -b beta https://github.com/ucscGenomeBrowser/kent.git --depth=1 + # cannot checkout the beta branch, leads to a ton of problems, sticking with master for now + git clone https://github.com/ucscGenomeBrowser/kent.git --depth=1 fi echo2 Now building CGIs from ~/kent to /usr/local/apache/cgi-bin echo2 Copying JS/HTML/CSS to /usr/local/apache/htdocs waitKey cd ~/kent/src make -j8 cgi-alpha make -j8 doc-alpha } # main function, installs the browser on Redhat/Debian and potentially even on OSX function installBrowser () { if [ -f $COMPLETEFLAG ]; then echo2 error: the file $COMPLETEFLAG exists. It seems that you have installed the browser already.