Skip to content

Commit

Permalink
fixes #644
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno committed Nov 2, 2021
1 parent 12ee3fa commit ca46d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ class LicenseProcessor extends BaseProcessor {
const match = /^SEE LICENSE IN (.*)$/.exec(manifest.license || '');

if (!match || !match[1]) {
this.expectedLicenseName = 'LICENSE.md or LICENSE.txt';
this.expectedLicenseName = 'LICENSE.md, LICENSE.txt or LICENSE';
this.filter = name => /^extension\/license(\.(md|txt))?$/i.test(name);
} else {
this.expectedLicenseName = match[1];
Expand Down

0 comments on commit ca46d8c

Please sign in to comment.