mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
Merge pull request #12649 from yyzxw/fix/wrong-cli-description
fix: wrong cli description
This commit is contained in:
commit
f1e85184e2
1 changed files with 2 additions and 2 deletions
|
|
@ -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] <path|url>...",
|
||||
Short: "install one or more Helm plugins",
|
||||
Use: "install [options] <path|url>",
|
||||
Short: "install a Helm plugin",
|
||||
Long: pluginInstallDesc,
|
||||
Aliases: []string{"add"},
|
||||
Args: require.ExactArgs(1),
|
||||
|
|
|
|||
Loading…
Reference in a new issue