From b6d73edb68566066006afaca153aa06c30d50585 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Tue, 26 Sep 2023 10:07:01 +1300 Subject: [PATCH] Change default behaviour --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 4b260fd..48223af 100644 --- a/main.go +++ b/main.go @@ -71,7 +71,7 @@ func main() { flag.BoolVar(&disableS3Upload, "disable-s3-upload", false, "Disable uploading insights data to an s3 s3Bucket") flag.BoolVar(&disableAPIIntegration, "disable-api-integration", false, "Disable insights data integration for the Lagoon API") flag.BoolVar(&enableDebug, "debug", false, "Enable debugging output") - flag.BoolVar(&problemsFromSBOM, "problems-from-sbom", false, "Pass any SBOM through Grype") + flag.BoolVar(&problemsFromSBOM, "problems-from-sbom", true, "Pass any SBOM through Trivy") flag.StringVar(&trivyServerEndpoint, "trivy-server-location", "http://localhost:4954", "Trivy server endpoint") flag.Parse()