mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 00:04:15 -04:00
8 lines
176 B
Bash
Executable File
8 lines
176 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "** presubmit/$(basename $0)"
|
|
|
|
if grep -r '[[:blank:]]$' "$@"; then
|
|
echo "** presubmit/$(basename $0): please remove any trailing white space"
|
|
fi
|