You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2008/07/10 05:57:41 UTC

svn commit: r675431 - /maven/components/branches/maven-2.0.x/apache-maven/src/bin/mvn.bat

Author: jdcasey
Date: Wed Jul  9 20:57:41 2008
New Revision: 675431

URL: http://svn.apache.org/viewvc?rev=675431&view=rev
Log:
[MNG-3651] Fixing error exit code on windows batch files (hopefully for good this time).

Modified:
    maven/components/branches/maven-2.0.x/apache-maven/src/bin/mvn.bat

Modified: maven/components/branches/maven-2.0.x/apache-maven/src/bin/mvn.bat
URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/apache-maven/src/bin/mvn.bat?rev=675431&r1=675430&r2=675431&view=diff
==============================================================================
--- maven/components/branches/maven-2.0.x/apache-maven/src/bin/mvn.bat (original)
+++ maven/components/branches/maven-2.0.x/apache-maven/src/bin/mvn.bat Wed Jul  9 20:57:41 2008
@@ -184,5 +184,5 @@
 
 if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
 
-exit /B %ERROR_CODE%
+cmd /C exit /B %ERROR_CODE%