Skip to content

Commit

Permalink
remove checking for ids endsWith +
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Cvetanovski authored and kemitchell committed Sep 19, 2023
1 parent de487b9 commit 9ba720f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ https.get('https://spdx.org/licenses/licenses.json', response => {
const index = [];
const deprecated = [];
for (const {licenseId: id, isDeprecatedLicenseId: isDeprecated} of licenses) {
if (id.endsWith('+')) {
continue;
}
if (isDeprecated) {
deprecated.push(id);
} else {
Expand Down

0 comments on commit 9ba720f

Please sign in to comment.