Message:

  A new issue has been created in JIRA.

---------------------------------------------------------------------
View the issue:
  http://jira.codehaus.org/browse/MAVEN-1383

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: MAVEN-1383
    Summary: If JAVA_HOME variable is not defined, it should throw an error level
       Type: Bug

     Status: Unassigned
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

    Project: maven
 Components: 
             cli

   Assignee: 
   Reporter: Ben Walding

    Created: Tue, 20 Jul 2004 7:31 PM
    Updated: Tue, 20 Jul 2004 7:31 PM

Description:
At the moment, the error level is just the standard "success" error level of 0.  This 
means that a maven build failure can be missed by things like DamageControl.


Patch (yeah it should be attached, but it's 1 character on line 109). And I'll 
probably apply it anyway.

--- maven.orig  2004-07-21 09:25:06.000000000 +1000
+++ maven       2004-07-21 09:27:00.000000000 +1000
@@ -109,7 +109,7 @@
 if [ ! -x "$JAVACMD" ] ; then
   echo "Error: JAVA_HOME is not defined correctly."
   echo "  We cannot execute $JAVACMD"
-  exit
+  exit 1
 fi

 if [ -z "$JAVA_HOME" ] ; then



---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to