summaryrefslogtreecommitdiff
path: root/hack/verify.sh
diff options
context:
space:
mode:
authorChristoph Blecker <admin@toph.ca>2018-02-23 16:30:39 -0800
committerChristoph Blecker <admin@toph.ca>2018-02-23 16:30:57 -0800
commitd9b419fbff37889b5a8490e2216413a7ce1755c5 (patch)
tree5552baf71c34323b5879b41896fc2fe69f48d675 /hack/verify.sh
parentb7ade6a47988119bc4c1787ec45a43d33ddb6ab8 (diff)
Add ability to have custom content in OWNERS_ALIASES
Diffstat (limited to 'hack/verify.sh')
-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}";