diff options
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py index 795389517f..0ca41aa91c 100644 --- a/meta/lib/oe/package.py +++ b/meta/lib/oe/package.py | |||
@@ -150,6 +150,7 @@ def npm_split_package_dirs(pkgdir): | |||
150 | continue | 150 | continue |
151 | pkgitems.append(pathitem) | 151 | pkgitems.append(pathitem) |
152 | pkgname = '-'.join(pkgitems).replace('_', '-') | 152 | pkgname = '-'.join(pkgitems).replace('_', '-') |
153 | pkgname = pkgname.replace('@', '') | ||
153 | pkgfile = os.path.join(root, dn, 'package.json') | 154 | pkgfile = os.path.join(root, dn, 'package.json') |
154 | data = None | 155 | data = None |
155 | if os.path.exists(pkgfile): | 156 | if os.path.exists(pkgfile): |