diff options
author | Enrico Scholz <enrico.scholz@sigma-chemnitz.de> | 2022-08-22 13:13:36 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-25 11:08:06 +0100 |
commit | b6caff521a1ddebf7dd73efb2c3dc00448d30455 (patch) | |
tree | e3fb1858744bdc15cb0e138be5e2c6b385567b64 | |
parent | 1a5c4140b0420cc70026a204fa751698fd8a8bb6 (diff) | |
download | poky-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>
-rw-r--r-- | meta/classes-recipe/npm.bbclass | 2 |
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"))) |