aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorPhillip Lord2018-05-03 21:40:34 +0100
committerPhillip Lord2018-05-03 22:14:13 +0100
commitcbb9c78de081e37cf0b2ab6f35022abf89507d9c (patch)
tree91760d1574c9ed5dacf634230a007499daab0270 /admin
parenta2003f9663e5649894b05695f7f2b11a3fa96339 (diff)
downloademacs-cbb9c78de081e37cf0b2ab6f35022abf89507d9c.tar.gz
emacs-cbb9c78de081e37cf0b2ab6f35022abf89507d9c.zip
Fix windows snapshot building
* admin/nt/dist-build/build-zips.sh: Fix broken if statement
Diffstat (limited to 'admin')
-rwxr-xr-xadmin/nt/dist-build/build-zips.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/admin/nt/dist-build/build-zips.sh b/admin/nt/dist-build/build-zips.sh
index d954683c8f5..7ffa8624765 100755
--- a/admin/nt/dist-build/build-zips.sh
+++ b/admin/nt/dist-build/build-zips.sh
@@ -190,8 +190,10 @@ else
190fi 190fi
191 191
192echo Checking for required branch 192echo Checking for required branch
193if [ -n $REQUIRED_BRANCH ]; 193if [ -z $REQUIRED_BRANCH ];
194then 194then
195 :
196else
195 BRANCH=$REQUIRED_BRANCH 197 BRANCH=$REQUIRED_BRANCH
196 echo [build] Building from Branch $BRANCH 198 echo [build] Building from Branch $BRANCH
197 VERSION=$VERSION-$BRANCH 199 VERSION=$VERSION-$BRANCH