Skip to content

Commit ed280c2

Browse files
committed
fix(evaluator.rules): Reflect the renaming of the category for CLAs
Signed-off-by: Frank Viernau <[email protected]>
1 parent 09909ec commit ed280c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

evaluator-rules/src/main/resources/evaluator.rules.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ fun getLicensesForCategory(category: String): Set<SpdxSingleLicenseExpression> =
4040
}
4141

4242
val commercialLicenses = getLicensesForCategory("commercial")
43-
val contributorLicenseAgreementLicenenses = getLicensesForCategory("contributor-license-agreement")
43+
val claLicenses = getLicensesForCategory("cla")
4444
val copyleftLicenses = getLicensesForCategory("copyleft")
4545
val copyleftLimitedLicenses = getLicensesForCategory("copyleft-limited")
4646
val freeRestrictedLicenses = getLicensesForCategory("free-restricted")
@@ -87,7 +87,7 @@ val ignoredLicenses = listOf(
8787
*/
8888
val handledLicenses = listOf(
8989
commercialLicenses,
90-
contributorLicenseAgreementLicenenses,
90+
claLicenses,
9191
copyleftLicenses,
9292
copyleftLimitedLicenses,
9393
freeRestrictedLicenses,

0 commit comments

Comments
 (0)