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
yq fix
This PR fixes an issue with the `yq` version detection logic; as of a recent version, `yq` incorrectly sends version information to `stderr` instead of `stdout`, breaking our init script. To account for this until the issue is fixed, we redirect `stderr` to `stdout`.
See: mikefarah/yq#472
yq --version
sends the version string output to standard error, which makes it harder to write scripts to check the installed version number.version of yq: 3.3.2
operating system: Linux
This may be linked to the changes to address #440. It is not blocker but it means you need to use something like:
Instead of the typical:
So scripts that used the later will stop working after an updated to 3.3.1+
The text was updated successfully, but these errors were encountered: