From a28cde6defe9aefc3df02f321cc293f0b562304a Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Mon, 22 Aug 2022 13:13:36 +0200 Subject: [PATCH] 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 --- meta/classes-recipe/npm.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))) -- 2.47.3