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'm updating the version of a Helm chart in the file Chart.yaml, and need to match ^version: .*$ - this gives zero matches. If I use version: .* it updates both version: lines, including the indented one.
I'm updating the version of a Helm chart in the file Chart.yaml, and need to match
^version: .*$
- this gives zero matches. If I useversion: .*
it updates bothversion:
lines, including the indented one.Given this configuration:
I would expect this file:
To have only the first
version:
line updated.Result: Nothing is replaced -
^
seems to break the RegEx matching.Perhaps matching is done on the file as a whole, and not line-by-line?
The text was updated successfully, but these errors were encountered: