Default to el6 build if the current branch is named sme9

master
Daniel Berteaud 11 years ago
parent 7304e43b26
commit e0985eb275
  1. 4
      submit

@ -8,7 +8,9 @@ SERVER=build.firewall-services.com
BRANCH=$(git branch | grep '*' | cut -d' ' -f2) BRANCH=$(git branch | grep '*' | cut -d' ' -f2)
DIST=$1 DIST=$1
if [ -z $DIST ]; then if [[ -z $DIST && "$BRANCH" == "sme9" ]]; then
DIST="el6"
elif [ -z $DIST ]; then
DIST="el5" DIST="el5"
fi fi

Loading…
Cancel
Save