You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried to provide manually some values and these are the results:
path = .foo is evaluated as .foo
path = .foo.bar is evaluated as ., I expect it to be evaluated as .foo.bar
path = .foo.bar.zap is evaluated as ., I expect it to be evaluated as .foo.bar.zap
what am I doing wrong? Could someone help me on this?
The text was updated successfully, but these errors were encountered:
Hi all, I am trying to use yq in a golang tool, to perform some queries over yaml files and thus perform some validations.
This is the code I've come up with:
Now I've been able to track down the problem to this line:
which is not working as expected.
I've tried to provide manually some values and these are the results:
path =
.foo
is evaluated as.foo
path =
.foo.bar
is evaluated as.
, I expect it to be evaluated as.foo.bar
path =
.foo.bar.zap
is evaluated as.
, I expect it to be evaluated as.foo.bar.zap
what am I doing wrong? Could someone help me on this?
The text was updated successfully, but these errors were encountered: