Attention is currently required from: Martin L Roth.
Nicholas Chin has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/81422?usp=email )
Change subject: util/lint: Fix license header regex ......................................................................
util/lint: Fix license header regex
A trailing | at the end of the regex added a zero length alternative match, causing all files to match and be filtered out. Also, a missing | separator between cmos.default and .apcb would cause those files to be unintentionally scanned.
Change-Id: I70cc3a5adf7edee059883cd3cbe02029776b02ef Signed-off-by: Nicholas Chin nic.c3.14@gmail.com --- M util/lint/lint-000-license-headers 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/22/81422/1
diff --git a/util/lint/lint-000-license-headers b/util/lint/lint-000-license-headers index 68bdae7..56addac 100755 --- a/util/lint/lint-000-license-headers +++ b/util/lint/lint-000-license-headers @@ -67,8 +67,8 @@ .spd|\ config|\ cmos.layout|\ -cmos.default\ -.apcb$|\ +cmos.default|\ +.apcb$\ "
#space separated list of directories to test