You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2005/12/22 14:48:47 UTC

svn commit: r358566 - /maven/continuum/trunk/continuum-site/src/site/resources/scripts/mvn.bat

Author: evenisse
Date: Thu Dec 22 05:48:44 2005
New Revision: 358566

URL: http://svn.apache.org/viewcvs?rev=358566&view=rev
Log:
Fix exit code

Modified:
    maven/continuum/trunk/continuum-site/src/site/resources/scripts/mvn.bat

Modified: maven/continuum/trunk/continuum-site/src/site/resources/scripts/mvn.bat
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-site/src/site/resources/scripts/mvn.bat?rev=358566&r1=358565&r2=358566&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-site/src/site/resources/scripts/mvn.bat (original)
+++ maven/continuum/trunk/continuum-site/src/site/resources/scripts/mvn.bat Thu Dec 22 05:48:44 2005
@@ -51,8 +51,7 @@
 echo Please set the JAVA_HOME variable in your environment to match the
 echo location of your Java installation
 echo.
-set ERROR_CODE=1
-goto end
+goto error
 
 :OkJHome
 if exist "%JAVA_HOME%\bin\java.exe" goto chkMHome
@@ -63,8 +62,7 @@
 echo Please set the JAVA_HOME variable in your environment to match the
 echo location of your Java installation
 echo.
-set ERROR_CODE=1
-goto end
+goto error
 
 :chkMHome
 if not "%M2_HOME%"=="" goto valMHome
@@ -77,8 +75,7 @@
 echo Please set the M2_HOME variable in your environment to match the
 echo location of the Maven installation
 echo.
-set ERROR_CODE=1
-goto end
+goto error
 
 :valMHome
 if exist "%M2_HOME%\bin\m2.bat" goto init
@@ -89,8 +86,7 @@
 echo Please set the M2_HOME variable in your environment to match the
 echo location of the Maven installation
 echo.
-set ERROR_CODE=1
-goto end
+goto error
 @REM ==== END VALIDATION ====
 
 :init
@@ -128,6 +124,7 @@
 @REM Start MAVEN2
 for %%i in ("%M2_HOME%"\core\boot\classworlds-*) do set CLASSWORLDS_JAR="%%i"
 %MAVEN_JAVA_EXE% %MAVEN_OPTS% -classpath %CLASSWORLDS_JAR% "-Dclassworlds.conf=%M2_HOME%\bin\m2.conf" "-Dmaven.home=%M2_HOME%" org.codehaus.classworlds.Launcher %MAVEN_CMD_LINE_ARGS%
+if ERRORLEVEL 1 goto error
 goto end
 
 :error