You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by js...@apache.org on 2005/12/12 05:30:41 UTC

svn commit: r356145 - /geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh

Author: jsisson
Date: Sun Dec 11 20:30:33 2005
New Revision: 356145

URL: http://svn.apache.org/viewcvs?rev=356145&view=rev
Log:
GERONIMO-1337 - Add quotes around variable reference used with touch command in geronimo.sh

Modified:
    geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh

Modified: geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh
URL: http://svn.apache.org/viewcvs/geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh?rev=356145&r1=356144&r2=356145&view=diff
==============================================================================
--- geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh (original)
+++ geronimo/branches/1.0/modules/scripts/src/resources/bin/geronimo.sh Sun Dec 11 20:30:33 2005
@@ -263,7 +263,7 @@
 elif [ "$1" = "start" ] ; then
 
   shift
-  touch $GERONIMO_OUT
+  touch "$GERONIMO_OUT"
   $START_OS_CMD "$_RUNJAVA" $JAVA_OPTS $GERONIMO_OPTS \
     -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" \
     -Dorg.apache.geronimo.base.dir="$GERONIMO_BASE" \