From cb50fa932c018a0d38155af7d49464482975f324 Mon Sep 17 00:00:00 2001 From: Kohei Yamamoto <48216243+yamagai@users.noreply.github.com> Date: Wed, 15 Feb 2023 08:23:50 +0900 Subject: [PATCH] fix: repos command help message (#698) --- cmd/repos.go | 2 +- docs/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/repos.go b/cmd/repos.go index 9ff2ba61..c7bfe6fb 100644 --- a/cmd/repos.go +++ b/cmd/repos.go @@ -13,7 +13,7 @@ func NewReposCmd(globalCfg *config.GlobalImpl) *cobra.Command { cmd := &cobra.Command{ Use: "repos", - Short: "Repos releases defined in state file", + Short: "Add chart repositories defined in state file", RunE: func(cmd *cobra.Command, args []string) error { reposImpl := config.NewReposImpl(globalCfg, reposOptions) err := config.NewCLIConfigImpl(reposImpl.GlobalImpl) diff --git a/docs/index.md b/docs/index.md index e80ff85b..8c33d09e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -522,7 +522,7 @@ Available Commands: init Initialize the helmfile, includes version checking and installation of helm and plug-ins lint Lint charts from state file (helm lint) list List releases defined in state file - repos Repos releases defined in state file + repos Add chart repositories defined in state file status Retrieve status of releases in state file sync Sync releases defined in state file template Template releases defined in state file