()
| 33 | } |
| 34 | |
| 35 | func (c *Install) Help() string { |
| 36 | helpText := ` |
| 37 | Usage: kitectl install URL |
| 38 | |
| 39 | Installs a kite from the given URL. Example: github.com/cenkalti/math.kite |
| 40 | ` |
| 41 | |
| 42 | return strings.TrimSpace(helpText) |
| 43 | } |
| 44 | |
| 45 | func (c *Install) Run(args []string) int { |
| 46 | if len(args) != 1 { |
nothing calls this directly
no outgoing calls
no test coverage detected