diff --git a/builder.sh b/builder.sh index 5069d8239c1c98a4f7043fe93cf49f5f1aa71504..7e1b5dcd058d474d3d4d9a0d8faed836caa0587c 100755 --- a/builder.sh +++ b/builder.sh @@ -64,13 +64,6 @@ if [ -z "${J}" ]; then J=10 fi -# prepare site.conf from template -if [ -f site/site.conf ]; then - rm site/site.conf -fi -cp site/site.in site/site.conf -sed -i -e "s/AUTOUPDATERBRANCH/$BRANCH/g" site/site.conf - # remove old images to make sure we only upload the new shiny stuff rm -rf output/images mkdir -p output @@ -136,7 +129,7 @@ do # Doing the Build # ############### - make all $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j${J} GLUON_RELEASE=${RELEASENAME} GLUON_AUTOUPDATER_BRANCH=$BRANCH GLUON_AUTOUPDATER_ENABLED=true GLUON_PRIORITY=$PRIO + make all $BROKEN GLUON_TARGET=$ARCHITECTURE $DEBUG -j${J} GLUON_RELEASE=${RELEASENAME} GLUON_AUTOUPDATER_BRANCH=$BRANCH GLUON_AUTOUPDATER_ENABLED=1 GLUON_PRIORITY=$PRIO echo \# make all completed >> output/cmd/${ARCHITECTURE}_make echo Exiting with Code $?