Improve regex pattern for third-party library detection

This commit is contained in:
Nicolas Saillant 2024-07-18 10:19:03 +02:00
parent 00cc6ce694
commit 26bab26adf
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ sub reformat_results($)
# print PLATFORM_NEW_RESULTS $_;
# last;
# }
if (/^-- Third-party library ([\w\.]+ [\w\.\_\-]*)/) {
if (/^-- Third-party library (.+)$/) {
$TPL = "$TPL $1,";
}
NEXT: if(! ($_= <PLATFORM_RESULTS>)) {