Skip to content

Commit b22f5f5

Browse files
committed
Fix failed extraction handling
1 parent fb0520c commit b22f5f5

File tree

1 file changed

+1
-1
lines changed
  • csharp/extractor/Semmle.Extraction.CSharp/Extractor

1 file changed

+1
-1
lines changed

csharp/extractor/Semmle.Extraction.CSharp/Extractor/Extractor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ static bool filter(CompilerCall compilerCall)
189189
break;
190190
case ExitCode.Failed:
191191
logger.LogWarning($" Compilation {diagnosticName} failed");
192-
return ExitCode.Failed;
192+
break;
193193
}
194194
}
195195
return allFailed ? ExitCode.Failed : ExitCode.Ok;

0 commit comments

Comments
 (0)