(s []string, e string)
| 104 | } |
| 105 | |
| 106 | func contains(s []string, e string) bool { |
| 107 | for _, a := range s { |
| 108 | if a == e { |
| 109 | return true |
| 110 | } |
| 111 | } |
| 112 | return false |
| 113 | } |
| 114 | |
| 115 | func (r *resolver) resolveRecursive(ctx devspacecontext.Context, basePath, parentConfigName string, currentDependency *Dependency, dependencies []*latest.DependencyConfig, options ResolveOptions) error { |
| 116 | if currentDependency != nil { |