From 0f7ceb2a30fa526bfdfd16ecabbe6a61ba3e441b Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Mon, 7 Jan 2019 15:12:45 +0000 Subject: [PATCH] :this_is_fine: Signed-off-by: James Munnelly --- hack/verify_boilerplate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/verify_boilerplate.py b/hack/verify_boilerplate.py index db83408e2..98fb27b5c 100755 --- a/hack/verify_boilerplate.py +++ b/hack/verify_boilerplate.py @@ -182,7 +182,7 @@ def get_regexs(): # Search for "YEAR" which exists in the boilerplate, but shouldn't in the real thing regexs["year"] = re.compile('YEAR') # dates can be 2014, 2015, 2016 or 2017, company holder names can be anything - regexs["date"] = re.compile('(2014|2015|2016|2017|2018)') + regexs["date"] = re.compile('(2014|2015|2016|2017|2018|2019|2020|2021|2022|2023|2024)') # strip // +build \n\n build constraints regexs["go_build_constraints"] = re.compile( r"^(// \+build.*\n)+\n", re.MULTILINE)