Browse Source

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

Jakob Borg 10 years ago
parent
commit
8b0037ffab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      check-contrib.sh

+ 1 - 1
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)