(args []string)
| 34 | } |
| 35 | |
| 36 | func (c *PluginsInstalledCommand) Run(args []string) int { |
| 37 | ctx, cleanup := handleTermInterrupt(c.Ui) |
| 38 | defer cleanup() |
| 39 | |
| 40 | return c.RunContext(ctx) |
| 41 | } |
| 42 | |
| 43 | func (c *PluginsInstalledCommand) RunContext(buildCtx context.Context) int { |
| 44 |
nothing calls this directly
no test coverage detected