fix: resolve auto-update npm permission errors and dependency installation issues

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
courtmanr@gmail.com
2025-06-01 23:37:05 +01:00
parent 93c5e692f6
commit 6fbc4e0422
+1 -1
View File
@@ -259,7 +259,7 @@ class UpdateManager {
// Install dependencies
console.log('[UpdateManager] Installing dependencies...');
await execAsync(`cd "${pulseDir}" && npm ci --production`);
await execAsync(`cd "${pulseDir}" && rm -rf node_modules && npm install --omit=dev`);
if (progressCallback) {
progressCallback({ phase: 'apply', progress: 100 });