Example #1
0
func remove(c *cli.Context) {
	home := home(c)
	minArgs(c, 1, "remove")

	a := c.Args()
	chart := a[0]

	action.Remove(chart, home)
}
Example #2
0
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)
	}

}