From 1686d2805c2e8273fdb2af60a9758b0f92cc5909 Mon Sep 17 00:00:00 2001 From: Igor Gudelj Date: Sat, 28 Feb 2026 17:30:43 +0100 Subject: [PATCH] Bump electron-builder to ^26.0.0 to fix Azure signing with spaces in path Azure Trusted Signing fails when the project path contains spaces (e.g. C:\Users\John Doe\project). The -Files parameter passed to Invoke-TrustedSigning was not quoted, causing PowerShell to split the path at the space. This was fixed upstream in electron-builder#8606 (commit a0e635c), released in app-builder-lib v26.0.0. Co-Authored-By: Claude Opus 4.6 --- resources/electron/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/electron/package.json b/resources/electron/package.json index 31d231f..aca3fc8 100644 --- a/resources/electron/package.json +++ b/resources/electron/package.json @@ -80,7 +80,7 @@ "@vue/eslint-config-prettier": "^10.1.0", "cross-env": "^10.0.0", "electron": "^38.0.0", - "electron-builder": "^25.1.8", + "electron-builder": "^26.0.0", "electron-chromedriver": "^38.0.0", "electron-vite": "^4.0.0", "eslint": "^9.17.0",