From 7322359797a1473a7c8a0fc95f4daccc5abd97e7 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Tue, 4 Jan 2022 14:40:34 -0700 Subject: [PATCH] MakePath rather than ParsePath Signed-off-by: Richard Jones --- plan/plan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plan/plan.go b/plan/plan.go index 8f942d31..08346821 100644 --- a/plan/plan.go +++ b/plan/plan.go @@ -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 }