MakePath rather than ParsePath

Signed-off-by: Richard Jones <richard@dagger.io>
This commit is contained in:
Richard Jones 2022-01-04 14:40:34 -07:00
parent 4e27937ccc
commit 7322359797
No known key found for this signature in database
GPG Key ID: CFB3A382EB166F4C

View File

@ -51,7 +51,7 @@ func Load(ctx context.Context, cfg Config) (*Plan, error) {
}
log.Ctx(ctx).Debug().Interface("with", param).Msg("filling overlay")
fillErr := v.FillPath(cue.ParsePath(""), paramV)
fillErr := v.FillPath(cue.MakePath(), paramV)
if fillErr != nil {
return nil, fillErr
}