From ac42767aaf1e5ebea31c19e61818f9d6f7eed367 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 19 Jul 2024 11:06:39 -0700 Subject: [PATCH] Debug where npm is --- scripts/copy-plugins.cjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/copy-plugins.cjs b/scripts/copy-plugins.cjs index 3cb35fa0..f2df483e 100644 --- a/scripts/copy-plugins.cjs +++ b/scripts/copy-plugins.cjs @@ -9,6 +9,8 @@ if (!PLUGINS_DIR) { } console.log('Installing dependencies', PLUGINS_DIR); +const out = execSync('which npm', {cwd: PLUGINS_DIR, env: process.env}).toString('utf-8'); +console.log("WHICH NPM?", out); execSync('npm ci', {cwd: PLUGINS_DIR, env: process.env}); console.log('Building plugins', PLUGINS_DIR); execSync('npm run build', {cwd: PLUGINS_DIR, env: process.env});