You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ge...@apache.org on 2010/10/27 10:16:37 UTC

svn commit: r1027852 - /geronimo/server/trunk/framework/configs/karaf-framework/src/main/distribution/unix-shell/bin/geronimo

Author: genspring
Date: Wed Oct 27 08:16:37 2010
New Revision: 1027852

URL: http://svn.apache.org/viewvc?rev=1027852&view=rev
Log:
GERONIMO-5661 Geronimo fails to start when there is a whitespace in Geronimo_HOME , patch from Viola lu.

Modified:
    geronimo/server/trunk/framework/configs/karaf-framework/src/main/distribution/unix-shell/bin/geronimo

Modified: geronimo/server/trunk/framework/configs/karaf-framework/src/main/distribution/unix-shell/bin/geronimo
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/configs/karaf-framework/src/main/distribution/unix-shell/bin/geronimo?rev=1027852&r1=1027851&r2=1027852&view=diff
==============================================================================
--- geronimo/server/trunk/framework/configs/karaf-framework/src/main/distribution/unix-shell/bin/geronimo (original)
+++ geronimo/server/trunk/framework/configs/karaf-framework/src/main/distribution/unix-shell/bin/geronimo Wed Oct 27 08:16:37 2010
@@ -226,7 +226,7 @@ if [ -z "$JDB_SRCPATH" ] ; then
 fi
 
 # Classpath: Add the jars in the lib dir
-for file in $GERONIMO_HOME/lib/*.jar
+for file in "$GERONIMO_HOME"/lib/*.jar
 do
   if [ -z "$CLASSPATH" ]; then
     CLASSPATH="$file"