From d94574c14110c262a2d5f8ff2e51d6455fb3c7af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20=C3=85berg?= Date: Fri, 19 Dec 2025 10:34:01 +0100 Subject: [PATCH] fix(desktop): add explicit MAS signing identity for pnpm compatibility electron-builder's auto-discovery works for Developer ID but fails for "3rd Party Mac Developer Application" when running with pnpm. Adding the explicit identity bypasses this issue. --- apps/desktop/electron-builder.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/desktop/electron-builder.json b/apps/desktop/electron-builder.json index 6e89799e9c4..fdd6229a017 100644 --- a/apps/desktop/electron-builder.json +++ b/apps/desktop/electron-builder.json @@ -147,6 +147,7 @@ } }, "mas": { + "identity": "3rd Party Mac Developer Application: Bitwarden Inc", "entitlements": "resources/entitlements.mas.plist", "entitlementsInherit": "resources/entitlements.mas.inherit.plist", "entitlementsLoginHelper": "resources/entitlements.mas.loginhelper.plist",