From: Enrico Scholz Date: Mon, 22 Aug 2022 11:13:36 +0000 (+0200) Subject: npm.bbclass: fix typo in 'fund' config option X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~3164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a28cde6defe9aefc3df02f321cc293f0b562304a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git npm.bbclass: fix typo in 'fund' config option Configuration option is named 'fund', not 'funds'. Signed-off-by: Enrico Scholz Signed-off-by: Luca Ceresoli Signed-off-by: Richard Purdie --- diff --git a/meta/classes-recipe/npm.bbclass b/meta/classes-recipe/npm.bbclass index deea53c9ec6..8e73400678d 100644 --- a/meta/classes-recipe/npm.bbclass +++ b/meta/classes-recipe/npm.bbclass @@ -54,7 +54,7 @@ def npm_global_configs(d): # Ensure no network access is done configs.append(("offline", "true")) configs.append(("proxy", "http://invalid")) - configs.append(("funds", False)) + configs.append(("fund", False)) configs.append(("audit", False)) # Configure the cache directory configs.append(("cache", d.getVar("NPM_CACHE")))