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