From 8b0037ffabfda96c5f30df0e96699288affb5958 Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Thu, 21 May 2015 21:42:46 +0200 Subject: [PATCH] Make check-contribs a little more generous in recognizing a copyright header --- check-contrib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check-contrib.sh b/check-contrib.sh index bb51179bb..21b8d1e64 100755 --- a/check-contrib.sh +++ b/check-contrib.sh @@ -29,7 +29,7 @@ print-missing-authors() { } 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)