// Execute the build
// ----------------------------------------------------------------------
try
{
ExecutionResult result = shellCommandHelper.executeShellCommand( workingDirectory, actualExecutable,
arguments, output, project.getId(),
environments );
getLogger().info( "Exit code: " + result.getExitCode() );
return new ContinuumBuildExecutionResult( output, result.getExitCode() );
}
catch ( CommandLineException e )
{
if ( e.getCause() instanceof InterruptedException )
{