fix(script): fixed yq

This commit is contained in:
Timothy Stewart 2024-03-25 11:34:40 -05:00
parent dfe19f3731
commit 7867b87d85

View File

@ -11,7 +11,7 @@ PROVIDER=virtualbox
# Read all boxes for all platforms from the "molecule.yml" files
all_boxes=$(cat "${GIT_ROOT}"/molecule/*/molecule.yml |
yq '.platforms[].box' | # Read the "box" property of each node under "platforms"
yq r '.platforms[].box' | # Read the "box" property of each node under "platforms"
grep --invert-match --regexp=--- | # Filter out file separators
sort |
uniq)