mirror of https://github.com/databricks/cli.git
35 lines
699 B
Go
35 lines
699 B
Go
package mutator
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
"github.com/databricks/cli/bundle/config"
|
|
)
|
|
|
|
type processInclude struct {
|
|
fullPath string
|
|
relPath string
|
|
}
|
|
|
|
// ProcessInclude loads the configuration at [fullPath] and merges it into the configuration.
|
|
func ProcessInclude(fullPath, relPath string) bundle.Mutator {
|
|
return &processInclude{
|
|
fullPath: fullPath,
|
|
relPath: relPath,
|
|
}
|
|
}
|
|
|
|
func (m *processInclude) Name() string {
|
|
return fmt.Sprintf("ProcessInclude(%s)", m.relPath)
|
|
}
|
|
|
|
func (m *processInclude) Apply(_ context.Context, b *bundle.Bundle) error {
|
|
this, err := config.Load(m.fullPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return b.Config.Merge(this)
|
|
}
|