Need to add in an optional semi-colon and hashtag to the copyright header for python files and for CCS ASM Files

This commit is contained in:
Soren Ptak 2024-02-26 12:08:13 -05:00
parent 0fa95b3071
commit 46477cd9d5

View file

@ -136,7 +136,7 @@ KERNEL_HEADER = [
]
FREERTOS_COPYRIGHT_REGEX = r"^( *(\/\*|\*|#|\/\/))? Copyright \(C\) 20\d\d Amazon.com, Inc. or its affiliates. All Rights Reserved\.( \*\/)?$"
FREERTOS_COPYRIGHT_REGEX = r"^(;|#)?( *(\/\*|\*|#|\/\/))? Copyright \(C\) 20\d\d Amazon.com, Inc. or its affiliates. All Rights Reserved\.( \*\/)?$"
def main():
parser = HeaderChecker.configArgParser()