[jboss-cvs] JBossAS SVN: r112560 - branches/JBPAPP_5_1/main/src/bin.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jan 9 01:25:33 EST 2012


Author: jiwils
Date: 2012-01-09 01:25:32 -0500 (Mon, 09 Jan 2012)
New Revision: 112560

Modified:
   branches/JBPAPP_5_1/main/src/bin/run.bat
Log:
Merging 5.1.3_interim changes: Applied fix for https://issues.jboss.org/browse/JBPAPP-7436. This resolves the issue on run.bat fails to execute when the full path to run.bat file contains a folder name that has brackets "( )" .

Modified: branches/JBPAPP_5_1/main/src/bin/run.bat
===================================================================
--- branches/JBPAPP_5_1/main/src/bin/run.bat	2012-01-09 05:16:20 UTC (rev 112559)
+++ branches/JBPAPP_5_1/main/src/bin/run.bat	2012-01-09 06:25:32 UTC (rev 112560)
@@ -19,10 +19,10 @@
    set "RUN_CONF=%DIRNAME%run.conf.bat"
 )
 if exist "%RUN_CONF%" (
-   echo Calling %RUN_CONF%
+   echo "Calling %RUN_CONF%"
    call "%RUN_CONF%" %*
 ) else (
-   echo Config file not found %RUN_CONF%
+   echo "Config file not found %RUN_CONF%"
 )
 
 pushd %DIRNAME%..



More information about the jboss-cvs-commits mailing list