From 7867b87d85239770da08f8e8663252be1a35dbc3 Mon Sep 17 00:00:00 2001 From: Timothy Stewart Date: Mon, 25 Mar 2024 11:34:40 -0500 Subject: [PATCH] fix(script): fixed yq --- .github/download-boxes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/download-boxes.sh b/.github/download-boxes.sh index 58a494c..031b6ff 100755 --- a/.github/download-boxes.sh +++ b/.github/download-boxes.sh @@ -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)