feat: fix the custom-analysis printing (#1195)

Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
Signed-off-by: AlexsJones <alexsimonjones@gmail.com>
This commit is contained in:
Alex Jones
2024-07-15 12:02:16 +01:00
committed by AlexsJones
parent 4e125f1692
commit 096f43356d

View File

@@ -173,6 +173,8 @@ func (a *Analysis) RunCustomAnalysis() {
result, err := canClient.Run()
if err != nil {
a.Errors = append(a.Errors, fmt.Sprintf("[%s] %s", cAnalyzer.Name, err))
} else {
a.Results = append(a.Results, result)
}
}