summaryrefslogtreecommitdiff
path: root/admin/nt
diff options
context:
space:
mode:
authorPhillip Lord <phillip.lord@russet.org.uk>2018-04-08 13:40:48 +0100
committerPhillip Lord <phillip.lord@russet.org.uk>2018-05-03 21:15:12 +0100
commita2003f9663e5649894b05695f7f2b11a3fa96339 (patch)
treec0d84293594680087b8c0edec7f594b3f933bd36 /admin/nt
parentef1deb48f4be14956c2fcd5fce947bb301134cf9 (diff)
downloademacs-a2003f9663e5649894b05695f7f2b11a3fa96339.tar.gz
* admin/nt/dist-build/build-zips.sh: Support building of branches
Diffstat (limited to 'admin/nt')
-rwxr-xr-xadmin/nt/dist-build/build-zips.sh17
1 files changed, 16 insertions, 1 deletions
diff --git a/admin/nt/dist-build/build-zips.sh b/admin/nt/dist-build/build-zips.sh
index ec41ec8c46a..d954683c8f5 100755
--- a/admin/nt/dist-build/build-zips.sh
+++ b/admin/nt/dist-build/build-zips.sh
@@ -108,7 +108,7 @@ BUILD_64=1
GIT_UP=0
CONFIG=1
-while getopts "36ghnsiV:" opt; do
+while getopts "36gb:hnsiV:" opt; do
case $opt in
3)
BUILD_32=1
@@ -132,6 +132,10 @@ while getopts "36ghnsiV:" opt; do
i)
BUILD=0
;;
+ b)
+ REQUIRED_BRANCH=$OPTARG
+ echo "Setting Required branch $REQUIRED_BRANCH"
+ ;;
V)
VERSION=$OPTARG
;;
@@ -185,6 +189,17 @@ else
OF_VERSION="$VERSION-`date +%Y-%m-%d`"
fi
+echo Checking for required branch
+if [ -n $REQUIRED_BRANCH ];
+then
+ BRANCH=$REQUIRED_BRANCH
+ echo [build] Building from Branch $BRANCH
+ VERSION=$VERSION-$BRANCH
+ OF_VERSION="$VERSION-`date +%Y-%m-%d`"
+ ## Use snapshot dependencies
+ SNAPSHOT=1
+fi
+
if (($GIT_UP))
then
git_up