From dd1682c84eeb4456a8b92fa59b4b183ffd73bb4c Mon Sep 17 00:00:00 2001 From: Mike Brown Date: Fri, 9 Feb 2018 11:02:59 -0600 Subject: [PATCH] adds lower case containerd to the list of authors Signed-off-by: Mike Brown --- hack/boilerplate/boilerplate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/boilerplate/boilerplate.py b/hack/boilerplate/boilerplate.py index cdd73ba11..6d45827ab 100755 --- a/hack/boilerplate/boilerplate.py +++ b/hack/boilerplate/boilerplate.py @@ -218,7 +218,7 @@ def get_regexs(): # strip #!.* from shell scripts regexs["shebang"] = re.compile(r"^(#!.*\n)\n*", re.MULTILINE) regexs["authors"] = re.compile( 'AUTHORS' ) - authors = [ 'The Kubernetes Authors', 'The Containerd Authors' ] + authors = [ 'The Kubernetes Authors', 'The Containerd Authors', 'The containerd Authors' ] regexs["auth"] = re.compile( '(%s)' % "|".join(map(lambda l: str(l), authors)) ) regexs["copyright"] = re.compile( 'Copyright YEAR AUTHORS' ) return regexs