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: ''});