(lockfile *lock.File)
| 225 | } |
| 226 | |
| 227 | func (c *Config) LoadRecursive(lockfile *lock.File) error { |
| 228 | return c.loadRecursive(lockfile, map[string]bool{}, "" /*cyclePath*/) |
| 229 | } |
| 230 | |
| 231 | // loadRecursive loads all the included plugins and their included plugins, etc. |
| 232 | // seen should be a cloned map because loading plugins twice is allowed if they |