We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dccba2 commit bf2dcffCopy full SHA for bf2dcff
1 file changed
.ci/scripts/generate_skills.sh
@@ -52,7 +52,7 @@ echo "Fetching upstream config from: $RAW_URL"
52
UPSTREAM_YAML=$(curl -sL --fail "$RAW_URL" || { echo "Error: Could not fetch upstream YAML for v$VERSION"; exit 1; })
53
54
# Extract the list of toolsets
55
-UPSTREAM_TOOLSETS=$(echo "$UPSTREAM_YAML" | npx --yes yaml-cli get "toolsets" --keys || echo "")
+UPSTREAM_TOOLSETS=$(echo "$UPSTREAM_YAML" | awk '/^toolsets:/{flag=1; next} flag && /^ [a-zA-Z0-9_-]+:/{print $1}' | sed 's/://g')
56
57
# Compare upstream toolsets against our supported list
58
MISSING_TOOLSETS=false
0 commit comments