fix variable
All checks were successful
renovate / renovate (push) Successful in 1m8s

This commit is contained in:
2025-12-10 00:30:53 -06:00
parent 9a1adb193a
commit 829424941f
4 changed files with 4 additions and 4 deletions

View File

@@ -194,7 +194,7 @@ jobs:
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
# Strip comments again to ensure formatting correctness
for file in $OUTPUT_FOLDER; do
for file in "$OUTPUT_FOLDER"/*; do
yq -i '... comments=""' $file
done

View File

@@ -179,7 +179,7 @@ jobs:
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
# Strip comments again to ensure formatting correctness
for file in $OUTPUT_FOLDER; do
for file in "$OUTPUT_FOLDER"/*; do
yq -i '... comments=""' $file
done

View File

@@ -199,7 +199,7 @@ jobs:
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
# Strip comments again to ensure formatting correctness
for file in $OUTPUT_FOLDER; do
for file in "$OUTPUT_FOLDER"/*; do
yq -i '... comments=""' $file
done

View File

@@ -197,7 +197,7 @@ jobs:
echo "$TEMPLATE" | yq '... comments=""' | yq 'select(. != null)' | yq -s '"'"$OUTPUT_FOLDER"'" + .kind + "-" + .metadata.name + ".yaml"'
# Strip comments again to ensure formatting correctness
for file in $OUTPUT_FOLDER; do
for file in "$OUTPUT_FOLDER"/*; do
yq -i '... comments=""' $file
done