From: Jean-Marie LEMETAYER Date: Fri, 24 Jan 2020 17:07:41 +0000 (+0100) Subject: recipetool/create: npm: remove the 'noverify' url parameter X-Git-Tag: uninative-2.8~409 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=401a9818c633373854d3c7dec032b9f455f2b2b4;p=openembedded-core.git 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. Signed-off-by: Jean-Marie LEMETAYER Signed-off-by: Richard Purdie --- 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): storeTagName = params['tag'] params['nobranch'] = '1' del params['tag'] - if scheme == 'npm': - params['noverify'] = '1' fetchuri = bb.fetch2.encodeurl((scheme, network, path, user, passwd, params)) tmpparent = tinfoil.config_data.getVar('BASE_WORKDIR')