diff options
Diffstat (limited to 'scripts/lib/recipetool')
-rw-r--r-- | scripts/lib/recipetool/create_npm.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/lib/recipetool/create_npm.py b/scripts/lib/recipetool/create_npm.py index 3ba6de029c..d3fcd99deb 100644 --- a/scripts/lib/recipetool/create_npm.py +++ b/scripts/lib/recipetool/create_npm.py | |||
@@ -45,6 +45,8 @@ class NpmRecipeHandler(RecipeHandler): | |||
45 | license = data['license'] | 45 | license = data['license'] |
46 | if isinstance(license, dict): | 46 | if isinstance(license, dict): |
47 | license = license.get('type', None) | 47 | license = license.get('type', None) |
48 | if 'MIT/X11' in license: | ||
49 | license = 'MIT' | ||
48 | return license | 50 | return license |
49 | 51 | ||
50 | def _shrinkwrap(self, srctree, localfilesdir, extravalues, lines_before): | 52 | def _shrinkwrap(self, srctree, localfilesdir, extravalues, lines_before): |