We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3609afc + a145058 commit b915354Copy full SHA for b915354
scripts/verify_license.py
@@ -12,7 +12,7 @@
12
13
def verify_file_has_license(file):
14
with open(file, 'r') as in_file:
15
- contents = in_file.read(300)
+ contents = in_file.read(400)
16
if "SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception" not in contents:
17
raise Exception(f"{file} does not contain a license!")
18
0 commit comments