renamed Import to LocalDirectory
Signed-off-by: Richard Jones <richard@dagger.io>
This commit is contained in:
parent
c15a7c6d22
commit
4768425037
@ -10,13 +10,13 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
Register("Import", func() Task { return &importTask{} })
|
Register("LocalDirectory", func() Task { return &localDirectoryTask{} })
|
||||||
}
|
}
|
||||||
|
|
||||||
type importTask struct {
|
type localDirectoryTask struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c importTask) Run(ctx context.Context, pctx *plancontext.Context, s solver.Solver, v *compiler.Value) (*compiler.Value, error) {
|
func (c localDirectoryTask) Run(ctx context.Context, pctx *plancontext.Context, s solver.Solver, v *compiler.Value) (*compiler.Value, error) {
|
||||||
var dir struct {
|
var dir struct {
|
||||||
Path string
|
Path string
|
||||||
Include []string
|
Include []string
|
||||||
@ -69,6 +69,6 @@ func (c importTask) Run(ctx context.Context, pctx *plancontext.Context, s solver
|
|||||||
|
|
||||||
fs := pctx.FS.New(result)
|
fs := pctx.FS.New(result)
|
||||||
return compiler.NewValue().FillFields(map[string]interface{}{
|
return compiler.NewValue().FillFields(map[string]interface{}{
|
||||||
"fs": fs.MarshalCUE(),
|
"contents": fs.MarshalCUE(),
|
||||||
})
|
})
|
||||||
}
|
}
|
Reference in New Issue
Block a user