make exceptions cause a failure response (and exit with a non-zero exit code)

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163079 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2004-09-15 11:04:52 +00:00
parent 46b377de67
commit ab2bc483b2
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class ExecutionResponse
public boolean isExecutionFailure()
{
return ( failedGoal != null );
return ( failedGoal != null || exception != null );
}
public String getFailedGoal()