Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaietta committed Nov 15, 2024
1 parent 15646bb commit 8327435
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/app-builder-lib/src/macPackager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ export class MacPackager extends PlatformPackager<MacConfiguration> {
}

//noinspection JSMethodCanBeStatic
protected async doSign(opts: SignOptions, customSignOptions: MacConfiguration, identity: Identity): Promise<void> {
protected async doSign(opts: SignOptions, customSignOptions: MacConfiguration, identity: Identity | null): Promise<void> {
const customSign = await resolveFunction(this.appInfo.type, customSignOptions.sign, "sign")

const { app, platform, type, provisioningProfile } = opts
Expand All @@ -420,8 +420,8 @@ export class MacPackager extends PlatformPackager<MacConfiguration> {
file: log.filePath(app),
platform,
type,
identityName: identity.name || "none",
identityHash: identity.hash || "none",
identityName: identity?.name || "none",
identityHash: identity?.hash || "none",
provisioningProfile: provisioningProfile || "none",
},
customSign ? "executing custom sign" : "signing"
Expand Down

0 comments on commit 8327435

Please sign in to comment.