From 7de56432270dc6cda97b6791793669dfa3fbd9fd Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Wed, 13 Sep 2023 10:05:24 -0400 Subject: [PATCH] fix source-version typo in flag description (#2126) Signed-off-by: Alex Goodman --- cmd/syft/cli/options/catalog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/syft/cli/options/catalog.go b/cmd/syft/cli/options/catalog.go index 50f4142d5..a9abf8760 100644 --- a/cmd/syft/cli/options/catalog.go +++ b/cmd/syft/cli/options/catalog.go @@ -88,7 +88,7 @@ func (cfg *Catalog) AddFlags(flags clio.FlagSet) { "set the name of the target being analyzed") flags.StringVarP(&cfg.Source.Version, "source-version", "", - "set the name of the target being analyzed") + "set the version of the target being analyzed") flags.StringVarP(&cfg.BasePath, "base-path", "", "base directory for scanning, no links will be followed above this directory, and all paths will be reported relative to this directory")