Author: rjung
Date: Tue Oct 8 21:53:06 2019
New Revision: 1868159
URL: http://svn.apache.org/viewvc?rev=1868159&view=rev
Log:
Fix new syntax errors in script.
Modified:
tomcat/jk/trunk/tools/jkrelease.sh
Modified: tomcat/jk/trunk/tools/jkrelease.sh
URL:
http://svn.apache.org/viewvc/tomcat/jk/trunk/tools/jkrelease.sh?rev=1868159&r1=1868158&r2=1868159&view=diff
==============================================================================
--- tomcat/jk/trunk/tools/jkrelease.sh (original)
+++ tomcat/jk/trunk/tools/jkrelease.sh Tue Oct 8 21:53:06 2019
@@ -105,12 +105,13 @@ do
done
shift `expr $OPTIND - 1`
-if [ "X$repos" -eq "Xgit" ]
+if [ "X$repos" == "Xgit" ]
then
USE_GIT=1
REPOS=$GIT_REPOS
JK_REPOS_URL=$REPOS
-elif [ "X$repos" -eq "Xsvn" ]
+elif [ "X$repos" == "Xsvn" ]
+then
USE_GIT=0
REPOS=$SVN_REPOS
else
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]