From 93b9c09c8a23715bb5a28845906498516507827f Mon Sep 17 00:00:00 2001 From: akashshinde Date: Tue, 27 Aug 2019 15:53:53 +0530 Subject: [PATCH] Fix: set config dir in repo update cmd Signed-off-by: akashshinde --- cmd/helm/repo_update.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/helm/repo_update.go b/cmd/helm/repo_update.go index b36681e93..1d647366a 100644 --- a/cmd/helm/repo_update.go +++ b/cmd/helm/repo_update.go @@ -51,6 +51,7 @@ func newRepoUpdateCmd(out io.Writer) *cobra.Command { Long: updateDesc, Args: require.NoArgs, RunE: func(cmd *cobra.Command, args []string) error { + o.repoFile = settings.RepositoryConfig return o.run(out) }, }