Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit cd8d006

Browse files
committed
Detect Intel Simplified Software License
1 parent 6aaa12f commit cd8d006

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

autospec/license.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def scan_for_licenses(srcdir, config, pkg_name):
175175
"about_bsd.txt"]
176176
# look for files that start with copying or licen[cs]e (but are
177177
# not likely scripts) or end with licen[cs]e
178-
target_pat = re.compile(r"^((copying)|(licen[cs]e)|(e[dp]l-v\d+))|(licen[cs]e)(\.(txt|xml))?$")
178+
target_pat = re.compile(r"^((copying)|(licen[cs]e)|(e[dp]l-v\d+))|(licen[cs]e)(\.(txt|xml))?|(intel simplified software license.*\.txt)$")
179179
for dirpath, dirnames, files in os.walk(srcdir):
180180
for name in files:
181181
if name.lower() in targets or target_pat.search(name.lower()):

0 commit comments

Comments
 (0)