summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/npm.bbclass
diff options
context:
space:
mode:
authorEnrico Scholz <enrico.scholz@sigma-chemnitz.de>2022-08-22 13:13:36 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-25 11:08:06 +0100
commitb6caff521a1ddebf7dd73efb2c3dc00448d30455 (patch)
treee3fb1858744bdc15cb0e138be5e2c6b385567b64 /meta/classes-recipe/npm.bbclass
parent1a5c4140b0420cc70026a204fa751698fd8a8bb6 (diff)
downloadpoky-b6caff521a1ddebf7dd73efb2c3dc00448d30455.tar.gz
npm.bbclass: fix typo in 'fund' config option
Configuration option is named 'fund', not 'funds'. (From OE-Core rev: a28cde6defe9aefc3df02f321cc293f0b562304a) Signed-off-by: Enrico Scholz <enrico.scholz@sigma-chemnitz.de> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/npm.bbclass')
-rw-r--r--meta/classes-recipe/npm.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/npm.bbclass b/meta/classes-recipe/npm.bbclass
index deea53c9ec..8e73400678 100644
--- a/meta/classes-recipe/npm.bbclass
+++ b/meta/classes-recipe/npm.bbclass
@@ -54,7 +54,7 @@ def npm_global_configs(d):
54 # Ensure no network access is done 54 # Ensure no network access is done
55 configs.append(("offline", "true")) 55 configs.append(("offline", "true"))
56 configs.append(("proxy", "http://invalid")) 56 configs.append(("proxy", "http://invalid"))
57 configs.append(("funds", False)) 57 configs.append(("fund", False))
58 configs.append(("audit", False)) 58 configs.append(("audit", False))
59 # Configure the cache directory 59 # Configure the cache directory
60 configs.append(("cache", d.getVar("NPM_CACHE"))) 60 configs.append(("cache", d.getVar("NPM_CACHE")))