From e339cc7e0c17f177c32e0f8b6f52023b6c0eb5ec Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Tue, 28 Jun 2016 23:23:10 -0700 Subject: [PATCH] fix(cmd): fix lazy load client --- cmd/helm/list.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmd/helm/list.go b/cmd/helm/list.go index 0bc454266..ede7cb01d 100644 --- a/cmd/helm/list.go +++ b/cmd/helm/list.go @@ -65,7 +65,10 @@ type listCmd struct { } func newListCmd(client helm.Interface, out io.Writer) *cobra.Command { - list := &listCmd{out: out} + list := &listCmd{ + out: out, + client: client, + } cmd := &cobra.Command{ Use: "list [flags] [FILTER]", Short: "list releases",