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

Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
This commit is contained in:
Alex Jones
2024-07-15 12:02:16 +01:00
committed by GitHub
parent 4366ad97b8
commit b6dd2a1181

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)
}
}