[Yanel-commits] rev 30064 - public/yanel/trunk

michi at wyona.com michi at wyona.com
Fri Dec 21 10:52:57 CET 2007


Author: michi
Date: 2007-12-21 10:52:56 +0100 (Fri, 21 Dec 2007)
New Revision: 30064

Modified:
   public/yanel/trunk/yanel.sh
Log:
equals fixed

Modified: public/yanel/trunk/yanel.sh
===================================================================
--- public/yanel/trunk/yanel.sh	2007-12-21 09:21:03 UTC (rev 30063)
+++ public/yanel/trunk/yanel.sh	2007-12-21 09:52:56 UTC (rev 30064)
@@ -26,11 +26,11 @@
 # ----- Start/Stop Yanel
 #mvn --version
 ant -version
-if [ "$1" == "start" ]; then
+if [ "$1" = "start" ]; then
   ant -f src/build/build.xml start-tomcat
-elif [ "$1" == "stop" ]; then
+elif [ "$1" = "stop" ]; then
   ant -f src/build/build.xml stop-tomcat
-elif [ "$1" == "start-jetty" ]; then
+elif [ "$1" = "start-jetty" ]; then
   MAVEN=`which mvn`
   if [ -z "$MAVEN" ]; then
     echo "ERROR: No \"mvn\" command available!"



More information about the Yanel-commits mailing list