diff --git a/img/bomber-json.png b/img/bomber-json.png index 636983c..85b5577 100644 Binary files a/img/bomber-json.png and b/img/bomber-json.png differ diff --git a/lib/scanner.go b/lib/scanner.go index 04539bf..3b5b8b0 100644 --- a/lib/scanner.go +++ b/lib/scanner.go @@ -51,9 +51,11 @@ func (s *Scanner) Scan(args []string) (exitCode int, err error) { util.PrintWarning("OpenAI enrichment is experimental and may increase scanning time significantly") } if len(scanned) > 0 { - util.PrintInfo("Scanning Files:") - for _, f := range scanned { - util.PrintTabbed(f.Name) + if s.Output != "json" { + util.PrintInfo("Scanning Files:") + for _, f := range scanned { + util.PrintTabbed(f.Name) + } } }