mirror of
https://github.com/coredns/coredns.git
synced 2025-12-07 10:55:17 -05:00
10 lines
217 B
Plaintext
10 lines
217 B
Plaintext
|
|
#!/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
|