We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Given a file called config.yaml containing the following YAML:
config.yaml
version: 1.0.1 id: 0x1111
Processing with this shell:
1. yq e '.id=0x2222' config.yaml 2. yq e '.id=“0x2222”' config.yaml
Output is unfortunately:
1: Error: Parsing expression: Lexer error: could not match text starting at 1:6 failing at 1:7. unmatched text: "x"
2: version: 1.0.1 id: ”0x2222“
Expected output:
version: 1.0.1 id: 0x2222
Version of yq: 4.12.1 Operating system: linux Installed via: binary release
The text was updated successfully, but these errors were encountered:
Will fix in next release
Sorry, something went wrong.
Fixed in 4.12.2
No branches or pull requests
Describe the bug
Given a file called
config.yaml
containing the following YAML:Processing with this shell:
Output is unfortunately:
Expected output:
Version of yq: 4.12.1
Operating system: linux
Installed via: binary release
The text was updated successfully, but these errors were encountered: