diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/npm.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/npm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/npm.py b/bitbake/lib/bb/fetch2/npm.py index ac76d64cdb..c09f050448 100644 --- a/bitbake/lib/bb/fetch2/npm.py +++ b/bitbake/lib/bb/fetch2/npm.py | |||
@@ -166,7 +166,7 @@ class Npm(FetchMethod): | |||
166 | # Using the 'downloadfilename' parameter as local filename | 166 | # Using the 'downloadfilename' parameter as local filename |
167 | # or the npm package name. | 167 | # or the npm package name. |
168 | if "downloadfilename" in ud.parm: | 168 | if "downloadfilename" in ud.parm: |
169 | ud.localfile = npm_localfile(d.expand(ud.parm["downloadfilename"])) | 169 | ud.localfile = npm_localfile(ud.parm["downloadfilename"]) |
170 | else: | 170 | else: |
171 | ud.localfile = npm_localfile(ud.package, ud.version) | 171 | ud.localfile = npm_localfile(ud.package, ud.version) |
172 | 172 | ||