Skip to content

Commit 15bc020

Browse files
committed
fix(ci): repair broken while-loop in validate-config-samples.sh
Duplicate unclosed while loop from a bad merge broke the repo-hygiene gate and shellcheck in the lint job.
1 parent 424de27 commit 15bc020

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

scripts/ci/validate-config-samples.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ for dir in examples config/samples; do
2626
# We ignore CRDs since kubeconform needs custom schemas for them.
2727
# We pass -ignore-missing-schemas to not fail on unknown CRs like StellarNode,
2828
# unless we explicitly provide the CRD schema.
29-
find "$dir" -name "*.yaml" -type f ! -name "_*" | while read -r file; do
3029
# Use process substitution (not a pipe) so counters update in this shell.
3130
while IFS= read -r file; do
3231
base="$(basename "$file")"

0 commit comments

Comments
 (0)