Merge pull request #6363 from markmckinnon/ios-analyser-error-14.17.0-release

ios-analyser-error-14.17.0-release
This commit is contained in:
Richard Cordovano 2020-10-01 13:51:12 -04:00 committed by GitHub
commit bd3c3b03c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -141,8 +141,8 @@ public class ILeappAnalyzerIngestModule implements DataSourceIngestModule {
try { try {
int result = ExecUtil.execute(iLeappCommand, new DataSourceIngestModuleProcessTerminator(context, true)); int result = ExecUtil.execute(iLeappCommand, new DataSourceIngestModuleProcessTerminator(context, true));
if (result != 0) { if (result != 0) {
logger.log(Level.SEVERE, String.format("Error running iLeapp, error code returned %d", result)); //NON-NLS // ignore if there is an error and continue to try and process the next file if there is one
return ProcessResult.ERROR; continue;
} }
addILeappReportToReports(moduleOutputPath, currentCase); addILeappReportToReports(moduleOutputPath, currentCase);