From 00a05daebedea369e79d8047afc8fdc413c9c954 Mon Sep 17 00:00:00 2001 From: Marek Aufart Date: Mon, 14 Oct 2024 16:44:19 +0200 Subject: [PATCH] :bug: Minor analysis help typo fix (#356) Minor analysis help typo fix Updating CLI message typo for --override-provider-settings. Fixes: https://issues.redhat.com/browse/MTA-3424 Signed-off-by: Marek Aufart --- cmd/analyze.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/analyze.go b/cmd/analyze.go index 42b02f3..32c1b97 100644 --- a/cmd/analyze.go +++ b/cmd/analyze.go @@ -331,7 +331,7 @@ func NewAnalyzeCmd(log logr.Logger) *cobra.Command { analyzeCommand.Flags().IntVar(&analyzeCmd.contextLines, "context-lines", 100, "number of lines of source code to include in the output for each incident") analyzeCommand.Flags().StringVar(&analyzeCmd.incidentSelector, "incident-selector", "", "an expression to select incidents based on custom variables. ex: (!package=io.konveyor.demo.config-utils)") analyzeCommand.Flags().StringArrayVarP(&analyzeCmd.depFolders, "dependency-folders", "d", []string{}, "directory for dependencies") - analyzeCommand.Flags().StringVar(&analyzeCmd.overrideProviderSettings, "override-provider-settings", "", "override the provider settings, the analysis pod will be run on the host network and no providers with be started up") + analyzeCommand.Flags().StringVar(&analyzeCmd.overrideProviderSettings, "override-provider-settings", "", "override the provider settings, the analysis pod will be run on the host network and no providers will be started up") analyzeCommand.Flags().StringArrayVar(&analyzeCmd.provider, "provider", []string{}, "specify which provider(s) to run") return analyzeCommand