Skip to content

Commit

Permalink
fix: use correct certificate variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nicole-obrien committed Oct 12, 2023
1 parent 5fdbc07 commit 0adc4ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/desktop/electron-builder-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function getAppProtocol(): string {
}

function getAppId(): string {
const defaultAppId = 'org.bloom-labs.bloom'
const defaultAppId = 'io.bloomwallet.bloom'
if (STAGE === 'prod') {
return defaultAppId
}
Expand All @@ -51,7 +51,7 @@ function getIconPath(): string {
}

async function notarizeMacos(appBundleId, appName): Promise<void> {
if (process.platform !== 'darwin' || process.env.MACOS_SKIP_NOTARIZATION) {
if (process.platform !== 'darwin' || process.env.MACOS_SKIP_NOTARIZATION === 'true') {
return
}

Expand All @@ -71,7 +71,7 @@ async function notarizeMacos(appBundleId, appName): Promise<void> {
appPath: path.resolve(__dirname, `../out/mac/${appName}.app`),
appleId: APPLE_ID,
appleIdPassword: APPLE_ID_PASSWORD,
ascProvider: 'UG77RJKZHH',
ascProvider: 'C2FJNDH9G2',
})
}

Expand Down

0 comments on commit 0adc4ef

Please sign in to comment.