Files
coredns/.presubmit/filename-hyphen

10 lines
217 B
Plaintext
Raw Normal View History

#!/bin/bash
echo "** presubmit/$(basename $0)"
for dir in "$@"; do
if find $dir | grep '-'; then
echo "** presubmit/$(basename $0): please use an underscore in filenames instead of a hyphen"
fi
done