From b58415182b09fa9ee384c3262c7a2a81b85fcba2 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 28 Aug 2025 19:39:06 -0400 Subject: [PATCH] build-with-container: ensure npm dir is set up before configure When the npm cache path option is passed the npm cache dir is passed to all container `run` commands, ensure the dir has been created before the first container command (configure) is used. Signed-off-by: John Mulligan (cherry picked from commit 79166af192ea0b4b982b56ce521516d5a29e7a0d) --- src/script/build-with-container.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/script/build-with-container.py b/src/script/build-with-container.py index cbfe1aea8b3..ef41fb9573d 100755 --- a/src/script/build-with-container.py +++ b/src/script/build-with-container.py @@ -648,6 +648,7 @@ def get_container(ctx): def bc_configure(ctx): """Configure the build""" ctx.build.wants(Steps.CONTAINER, ctx) + ctx.build.wants(Steps.NPM_CACHE, ctx) cmd = _container_cmd( ctx, [ -- 2.39.5