Make check-contribs a little more generous in recognizing a copyright header

This commit is contained in:
Jakob Borg 2015-05-21 21:42:46 +02:00
parent 4ab03f3bef
commit 8b0037ffab

View File

@ -29,7 +29,7 @@ print-missing-authors() {
} }
print-missing-copyright() { print-missing-copyright() {
find . -name \*.go | xargs egrep -L 'Copyright \(C\)|automatically generated' | grep -v Godeps | grep -v internal/auto/ find . -name \*.go | xargs egrep -L 'Copyright|automatically generated' | grep -v Godeps | grep -v internal/auto/
} }
authors=$(print-missing-authors) authors=$(print-missing-authors)