summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authork8s-ci-robot <k8s-ci-robot@users.noreply.github.com>2018-02-26 16:26:44 -0800
committerGitHub <noreply@github.com>2018-02-26 16:26:44 -0800
commit6e3e64ffb3a2a22eca33dbe2d32979db3cc3c3fd (patch)
tree656e1977c808932e92008d7fef0205b206259748 /hack
parent09972f2c424376dc40f5da7c251ec5a9e5ad575b (diff)
parentd9b419fbff37889b5a8490e2216413a7ce1755c5 (diff)
Merge pull request #1849 from cblecker/custom-aliases
Add ability to have custom content in OWNERS_ALIASES
Diffstat (limited to 'hack')
-rwxr-xr-xhack/verify.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/hack/verify.sh b/hack/verify.sh
index 8eb75982..52d57a02 100755
--- a/hack/verify.sh
+++ b/hack/verify.sh
@@ -19,7 +19,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}/sig-list.md); do
+for file in $(ls ${CRT_DIR}/sig-*/README.md ${CRT_DIR}/wg-*/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}";