From bf4d6f290bce58388e38d4ec1b8be5621ed5623c Mon Sep 17 00:00:00 2001 From: yyzxw <1020938856@qq.com> Date: Mon, 18 Dec 2023 11:17:53 +0800 Subject: [PATCH] fix: wrong cli description Signed-off-by: xiaowu.zhu --- cmd/helm/plugin_install.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/plugin_install.go b/cmd/helm/plugin_install.go index 4e8ee327b..a952ea8cc 100644 --- a/cmd/helm/plugin_install.go +++ b/cmd/helm/plugin_install.go @@ -39,8 +39,8 @@ This command allows you to install a plugin from a url to a VCS repo or a local func newPluginInstallCmd(out io.Writer) *cobra.Command { o := &pluginInstallOptions{} cmd := &cobra.Command{ - Use: "install [options] ...", - Short: "install one or more Helm plugins", + Use: "install [options] ", + Short: "install a Helm plugin", Long: pluginInstallDesc, Aliases: []string{"add"}, Args: require.ExactArgs(1),