Commit e339cc7e authored by Adam Reese's avatar Adam Reese

fix(cmd): fix lazy load client

parent 6453c992
...@@ -65,7 +65,10 @@ type listCmd struct { ...@@ -65,7 +65,10 @@ type listCmd struct {
} }
func newListCmd(client helm.Interface, out io.Writer) *cobra.Command { func newListCmd(client helm.Interface, out io.Writer) *cobra.Command {
list := &listCmd{out: out} list := &listCmd{
out: out,
client: client,
}
cmd := &cobra.Command{ cmd := &cobra.Command{
Use: "list [flags] [FILTER]", Use: "list [flags] [FILTER]",
Short: "list releases", Short: "list releases",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment