func remove(c *cli.Context) { home := home(c) minArgs(c, 1, "remove") a := c.Args() chart := a[0] action.Remove(chart, home) }
func remove(c *cli.Context) { minArgs(c, 1, "remove") h := home(c) force := c.Bool("force") a := c.Args() for _, chart := range a { action.Remove(chart, h, force) } }