[jboss-cvs] JBossAS SVN: r112383 - branches/JBPAPP_5_1_3_interim/main/src/bin.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 27 13:32:20 EDT 2011


Author: tibrahim
Date: 2011-10-27 13:32:20 -0400 (Thu, 27 Oct 2011)
New Revision: 112383

Modified:
   branches/JBPAPP_5_1_3_interim/main/src/bin/run.bat
Log:
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_3_interim/main/src/bin/run.bat
===================================================================
--- branches/JBPAPP_5_1_3_interim/main/src/bin/run.bat	2011-10-27 17:04:00 UTC (rev 112382)
+++ branches/JBPAPP_5_1_3_interim/main/src/bin/run.bat	2011-10-27 17:32:20 UTC (rev 112383)
@@ -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