summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorKubernetes Prow Robot <k8s-ci-robot@users.noreply.github.com>2019-05-06 07:17:39 -0700
committerGitHub <noreply@github.com>2019-05-06 07:17:39 -0700
commit08281a417f3b964aa63755f4353ec204c94bcef9 (patch)
tree306b6f366852dfb791044f2142702447bc92321e /hack
parentfa149ea1197de2590560a1c8048c4cec226b9809 (diff)
parentf2c3064a5bd64339f316e6719094c3782d503102 (diff)
Merge pull request #3671 from spiffxp/format-sigs-yaml
Enforce consistent formatting of sigs.yaml
Diffstat (limited to 'hack')
-rwxr-xr-xhack/verify-generated-docs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/hack/verify-generated-docs.sh b/hack/verify-generated-docs.sh
index 73302358..81c85027 100755
--- a/hack/verify-generated-docs.sh
+++ b/hack/verify-generated-docs.sh
@@ -37,7 +37,7 @@ make 1>/dev/null
mismatches=0
break=$(printf "=%.0s" $(seq 1 68))
-for file in $(ls ${CRT_DIR}/sig-*/README.md ${CRT_DIR}/wg-*/README.md ${CRT_DIR}/ug-*/README.md ${CRT_DIR}/committee-*/README.md ${CRT_DIR}/sig-list.md ${CRT_DIR}/OWNERS_ALIASES); do
+for file in $(ls ${CRT_DIR}/sigs.yaml ${CRT_DIR}/sig-*/README.md ${CRT_DIR}/wg-*/README.md ${CRT_DIR}/ug-*/README.md ${CRT_DIR}/committee-*/README.md ${CRT_DIR}/sig-list.md ${CRT_DIR}/OWNERS_ALIASES); do
real=${file#$CRT_DIR/}
if ! diff -q ${file} ${WORKING_DIR}/${real} &>/dev/null; then
echo "${file} does not match ${WORKING_DIR}/${real}";