Skip to content

Commit

Permalink
Do not search for .yml files anymore on check-json validation
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellutz committed Sep 19, 2024
1 parent e232222 commit 273e419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/check-json.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ ret_code=0
# Some yaml files can contain more definitions.
# This is a problem for `yq` tool so we need to split these into separate files.
tmp_dir=$(mktemp --directory --suffix=-check-json)
for f in **/*.yml **/*.yaml; do
for f in **/*.yaml; do
echo "Splitting the '${f}' file."
split_yaml_file "${f}" "${tmp_dir}" || ret_code="${?}"
done
Expand Down

0 comments on commit 273e419

Please sign in to comment.