(args []string)
| 53 | } |
| 54 | |
| 55 | func (o *pluginUpdateOptions) complete(args []string) error { |
| 56 | if len(args) == 0 { |
| 57 | return errors.New("please provide plugin name to update") |
| 58 | } |
| 59 | o.names = args |
| 60 | return nil |
| 61 | } |
| 62 | |
| 63 | func (o *pluginUpdateOptions) run(out io.Writer) error { |
| 64 | slog.Debug("loading installed plugins", "path", settings.PluginsDirectory) |
no outgoing calls
no test coverage detected