Skip to content

Commit a1a9ab5

Browse files
committed
fix: correct linting
Signed-off-by: Chris Butler <chris.butler@redhat.com>
1 parent 3a56bd3 commit a1a9ab5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/jsonschema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Verify ClusterGroup values.schema.json against values-*yaml files
4040
run: |
4141
set -e
42-
for i in $(find . -maxdepth 1 -type f -name "values-*.yaml" ! -name "values-global.yaml")
42+
find . -maxdepth 1 -type f -name "values-*.yaml" ! -name "values-global.yaml" -print0 | while IFS= read -r -d '' i;
4343
do
4444
echo "$i"
4545
# disable shellcheck of single quotes in yq

0 commit comments

Comments
 (0)