diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 85238d9..540acd3 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -36,7 +36,7 @@ checksum: nfpms: - maintainer: DevOps Kung Fu Mafia - description: Scans SBoMs for security vulnerabilities. + description: Scans SBOMs for security vulnerabilities. homepage: https://github.com/devops-kung-fu/bomber license: MPL formats: diff --git a/cmd/root.go b/cmd/root.go index f41312f..ab04a64 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -25,7 +25,7 @@ var ( rootCmd = &cobra.Command{ Use: "bomber [flags] file", Example: " bomber scan --output html test.cyclonedx.json", - Short: "Scans SBoMs for security vulnerabilities.", + Short: "Scans SBOMs for security vulnerabilities.", Version: version, PersistentPreRun: func(cmd *cobra.Command, args []string) { if !debug { diff --git a/cmd/scan.go b/cmd/scan.go index 897c554..782abb3 100644 --- a/cmd/scan.go +++ b/cmd/scan.go @@ -34,7 +34,7 @@ var ( // summary, detailed bool scanCmd = &cobra.Command{ Use: "scan", - Short: "Scans a provided SBoM file or folder containing SBoMs for vulnerabilities.", + Short: "Scans a provided SBOM file or folder containing SBOMs for vulnerabilities.", PreRun: func(cmd *cobra.Command, args []string) { r, err := renderers.NewRenderer(output) if err != nil {