Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ public static void saveResults(final Path outputDir,
final ScanMetaData scanMetaData) throws IOException {
val jsonFile = outputDir.resolve("recommendations.json");
JsonUtil.storeRecommendations(results, jsonFile);
Log.info("Recommendations in Json format written to to:%n%s", jsonFile.normalize().toUri());
Log.info("Recommendations in Json format written to:%n%s", jsonFile.normalize().toUri());
val sarifFile = outputDir.resolve("recommendations.sarif.json");
JsonUtil.writeSarif(createSarifReport(results), sarifFile);
Log.info("Recommendations in SARIF format written to to:%n%s", sarifFile.normalize().toUri());
Log.info("Recommendations in SARIF format written to:%n%s", sarifFile.normalize().toUri());

createHtmlReport(outputDir, scanMetaData, results);
}
Expand Down