mirror of
https://github.com/coredns/coredns.git
synced 2026-03-11 16:15:05 -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
|