[jboss-cvs] JBossAS SVN: r58680 - trunk/system/src/bin

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Nov 27 05:59:57 EST 2006


Author: mladen.turk at jboss.com
Date: 2006-11-27 05:59:49 -0500 (Mon, 27 Nov 2006)
New Revision: 58680

Modified:
   trunk/system/src/bin/run.bat
Log:
Remove double backslashes. The DIRNAME always ends with the backslash, so there in no need to add an extra one

Modified: trunk/system/src/bin/run.bat
===================================================================
--- trunk/system/src/bin/run.bat	2006-11-27 10:21:09 UTC (rev 58679)
+++ trunk/system/src/bin/run.bat	2006-11-27 10:59:49 UTC (rev 58680)
@@ -35,7 +35,7 @@
 
 rem Find run.jar, or we can't continue
 
-set RUNJAR=%DIRNAME%\run.jar
+set RUNJAR=%DIRNAME%run.jar
 if exist "%RUNJAR%" goto FOUND_RUN_JAR
 echo Could not locate %RUNJAR%. Please check that you are in the
 echo bin directory when running this script.
@@ -77,7 +77,7 @@
 
 rem Setup JBoss specific properties
 set JAVA_OPTS=%JAVA_OPTS% -Dprogram.name=%PROGNAME%
-set JBOSS_HOME=%DIRNAME%\..
+set JBOSS_HOME=%DIRNAME%..
 
 rem Add -server to the JVM options, if supported
 "%JAVA%" -version 2>&1 | findstr /I hotspot > nul




More information about the jboss-cvs-commits mailing list