special case for Random Forest

This commit is contained in:
Sébastien Loriot 2019-10-20 10:45:13 +02:00
parent 0228f1e4ee
commit dfe3ce485d
1 changed files with 4 additions and 0 deletions

View File

@ -593,6 +593,10 @@ sub parselicense {
if ($licensetext =~ /SPDX-License-Identifier LGPL-3.0-only/i) {
$license = "LGPL (v3)";
}
if ($licensetext =~ /SPDX-License-Identifier LicenseRef-RFL/i) {
$license = "MIT/X11 (BSD like)";
}
}
$license = "UNKNOWN" if (!length($license));