summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJean-Marie LEMETAYER <jean-marie.lemetayer@savoirfairelinux.com>2020-01-24 18:07:41 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-27 16:48:09 +0000
commit4bb2d97e7ff710170482f263cee3fa7eb79f56e5 (patch)
tree2d24c68b68047b1287228d5ea740f7f9a020a369 /scripts
parent1f3b0e2f8992da9321a73a5b8d026c3bf6fd1967 (diff)
downloadpoky-4bb2d97e7ff710170482f263cee3fa7eb79f56e5.tar.gz
recipetool/create: npm: remove the 'noverify' url parameter
This commit removes the 'noverify' parameter which was added to the url to fix warnings with the shrinkwrap / lockdown file generation. This is not needed anymore with the new npm fetcher. (From OE-Core rev: 401a9818c633373854d3c7dec032b9f455f2b2b4) Signed-off-by: Jean-Marie LEMETAYER <jean-marie.lemetayer@savoirfairelinux.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/recipetool/create.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py
index 7659862f58..6cbf4de674 100644
--- a/scripts/lib/recipetool/create.py
+++ b/scripts/lib/recipetool/create.py
@@ -477,8 +477,6 @@ def create_recipe(args):
477 storeTagName = params['tag'] 477 storeTagName = params['tag']
478 params['nobranch'] = '1' 478 params['nobranch'] = '1'
479 del params['tag'] 479 del params['tag']
480 if scheme == 'npm':
481 params['noverify'] = '1'
482 fetchuri = bb.fetch2.encodeurl((scheme, network, path, user, passwd, params)) 480 fetchuri = bb.fetch2.encodeurl((scheme, network, path, user, passwd, params))
483 481
484 tmpparent = tinfoil.config_data.getVar('BASE_WORKDIR') 482 tmpparent = tinfoil.config_data.getVar('BASE_WORKDIR')