MCPcopy Index your code
hub / github.com/devspace-sh/devspace / ResolveAll

Method ResolveAll

pkg/devspace/dependency/manager.go:46–55  ·  view source on GitHub ↗
(ctx devspacecontext.Context, options ResolveOptions)

Source from the content-addressed store, hash-verified

44}
45
46func (m *manager) ResolveAll(ctx devspacecontext.Context, options ResolveOptions) ([]types.Dependency, error) {
47 dependencies, err := m.handleDependencies(ctx, options, "Resolve", func(ctx devspacecontext.Context, dependency *Dependency) error {
48 return nil
49 })
50 if err != nil {
51 return nil, err
52 }
53
54 return dependencies, nil
55}
56
57// BuildOptions has all options for building all dependencies
58type BuildOptions struct {

Callers

nothing calls this directly

Calls 1

handleDependenciesMethod · 0.95

Tested by

no test coverage detected