From 6fcb3948cec17f484d6992ff337a936b5ba4bad1 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 19 Jul 2024 11:02:15 -0700 Subject: [PATCH] TRy again --- scripts/copy-plugins.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/copy-plugins.cjs b/scripts/copy-plugins.cjs index 69cd0e77..9f46b1f1 100644 --- a/scripts/copy-plugins.cjs +++ b/scripts/copy-plugins.cjs @@ -9,7 +9,7 @@ if (!PLUGINS_DIR) { } console.log('Installing dependencies', PLUGINS_DIR); -execSync('which npm', {cwd: PLUGINS_DIR}); +execSync('which npm'); execSync('npm ci', {cwd: PLUGINS_DIR}); console.log('Building plugins', PLUGINS_DIR); execSync('npm run build', {cwd: PLUGINS_DIR, shell: ''});