(args []string)
| 52 | } |
| 53 | |
| 54 | func (c *PluginsRemoveCommand) Run(args []string) int { |
| 55 | ctx, cleanup := handleTermInterrupt(c.Ui) |
| 56 | defer cleanup() |
| 57 | |
| 58 | return c.RunContext(ctx, args) |
| 59 | } |
| 60 | |
| 61 | // deletePluginBinary removes a local plugin binary, and its related checksum file. |
| 62 | func deletePluginBinary(pluginPath string) error { |
nothing calls this directly
no test coverage detected