(source string)
| 29 | } |
| 30 | |
| 31 | func newBase(source string) base { |
| 32 | settings := cli.New() |
| 33 | return base{ |
| 34 | Source: source, |
| 35 | PluginsDirectory: settings.PluginsDirectory, |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | // Path is where the plugin will be installed. |
| 40 | func (b *base) Path() string { |
searching dependent graphs…