1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 05:53:42 +00:00

Undoes after sign changes

This commit is contained in:
Nathan Ansel
2025-02-13 09:34:49 -06:00
parent 908081323e
commit 0c4930440c
4 changed files with 1 additions and 11 deletions

View File

@@ -4,8 +4,6 @@
<dict>
<key>com.apple.developer.team-identifier</key>
<string>LTZ2PFU5D6</string>
<key>com.apple.developer.authentication-services.autofill-credential-provider</key>
<true/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
</dict>

View File

@@ -2,10 +2,6 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.developer.team-identifier</key>
<string>LTZ2PFU5D6</string>
<key>com.apple.developer.authentication-services.autofill-credential-provider</key>
<true/>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.inherit</key>

View File

@@ -57,10 +57,7 @@ async function run(context) {
// Resign to sign safari extension
if (context.electronPlatformName === "mas") {
const masBuildOptions = deepAssign(
{
// identity: "4B9662CAB74E8E4F4ECBDD9EDEF2543659D95E3C",
// provisioningProfile: "./bitwarden_desktop_appstore.provisionprofile",
},
{},
context.packager.platformSpecificBuildOptions,
context.packager.config.mas,
);

View File

@@ -11,7 +11,6 @@ const paths = {
extensionDist: "./macos/dist/autofill-extension.appex",
macOsProject: "./macos/desktop.xcodeproj",
macOsConfig: "./macos/production.xcconfig",
macOsProvisioningProfile: "./macos/bitwarden_desktop_autofill_app_store_2024.provisionprofile",
};
async function buildMacOs() {