emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] scratch/fix-snapshot-building bd70536: Fix windows snapsho


From: Phillip Lord
Subject: [Emacs-diffs] scratch/fix-snapshot-building bd70536: Fix windows snapshot building
Date: Thu, 3 May 2018 16:41:15 -0400 (EDT)

branch: scratch/fix-snapshot-building
commit bd7053642723f075614bd4d6a71375252730e810
Author: Phillip Lord <address@hidden>
Commit: Phillip Lord <address@hidden>

    Fix windows snapshot building
    
    * admin/nt/dist-build/build-zips.sh: Fix broken if statement
---
 admin/nt/dist-build/build-zips.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/admin/nt/dist-build/build-zips.sh 
b/admin/nt/dist-build/build-zips.sh
index d954683..ef17fe1 100755
--- a/admin/nt/dist-build/build-zips.sh
+++ b/admin/nt/dist-build/build-zips.sh
@@ -190,8 +190,9 @@ else
 fi
 
 echo Checking for required branch
-if [ -n $REQUIRED_BRANCH ];
+if [ -z $REQUIRED_BRANCH ];
 then
+else
     BRANCH=$REQUIRED_BRANCH
     echo [build] Building from Branch $BRANCH
     VERSION=$VERSION-$BRANCH



reply via email to

[Prev in Thread] Current Thread [Next in Thread]