mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 00:04:15 -04:00
11 lines
240 B
Bash
Executable File
11 lines
240 B
Bash
Executable File
#!/usr/bin/env 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"
|
|
exit 1
|
|
fi
|
|
done
|