Skip to content

Commit

Permalink
fix(mac): use Identity hash instead of name if it exists (#7622)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaietta committed Jun 21, 2023
1 parent 36782ca commit 4652416
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/great-seas-admire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-lib": patch
---

fix(mac): use Identity `hash` instead of `name` if it exists
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/macPackager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ export default class MacPackager extends PlatformPackager<MacConfiguration> {
https://github.com/electron-userland/electron-builder/issues/5383
*/
},
identity: identity ? identity.name : undefined,
identity: identity ? identity.hash || identity.name : undefined,
type,
platform: isMas ? "mas" : "darwin",
version: this.config.electronVersion || undefined,
Expand Down

0 comments on commit 4652416

Please sign in to comment.