1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 14:04:03 +00:00

Alters how the provisioning profile is provided to xcodebuild

This commit is contained in:
Nathan Ansel
2025-02-06 17:00:55 -06:00
parent ff2a23d502
commit a1dfede4fc
2 changed files with 7 additions and 14 deletions

View File

@@ -11,6 +11,7 @@ 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() {
@@ -31,7 +32,7 @@ async function buildMacOs() {
// Uncomment when signing is fixed
// "-xcconfig",
// paths.macOsConfig,
"PROVISIONING_PROFILE=$HOME/secrets/bitwarden_desktop_autofill_app_store_2024.provisionprofile",
"PROVISIONING_PROFILE=" + paths.macOsProvisioningProfile,
"CODE_SIGN_IDENTITY=4B9662CAB74E8E4F4ECBDD9EDEF2543659D95E3C",
]);
stdOutProc(proc);