From 288ca862b3aaf942e58aa0dad0e15e2fda84780f Mon Sep 17 00:00:00 2001 From: Alex Jones Date: Wed, 19 Mar 2025 14:05:53 -0700 Subject: [PATCH] chore: fix error (#1403) * chore: rebased chore: removed trivy Signed-off-by: AlexsJones * chore: updated deps Signed-off-by: AlexsJones * fix: missing error Signed-off-by: AlexsJones * fix: missing error Signed-off-by: AlexsJones --------- Signed-off-by: AlexsJones --- pkg/analysis/analysis.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/analysis/analysis.go b/pkg/analysis/analysis.go index 227c3438..bed85b1b 100644 --- a/pkg/analysis/analysis.go +++ b/pkg/analysis/analysis.go @@ -295,7 +295,9 @@ func (a *Analysis) executeAnalyzer(analyzer common.IAnalyzer, filter string, ana // Run the analyzer results, err := analyzer.Analyze(analyzerConfig) - + if err != nil { + fmt.Println(err) + } // Measure the time taken if a.WithStats { elapsedTime = time.Since(startTime)