Skip to content

Commit 28c07b4

Browse files
author
Christoph Settgast
authored
fix(mas): Allow signing with "3rd Party Mac Developer Application" (#6970)
1 parent 8279d05 commit 28c07b4

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.changeset/little-ways-watch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"app-builder-lib": patch
3+
---
4+
5+
fix(mas): Allow signing with "3rd Party Mac Developer Application"

packages/app-builder-lib/src/macPackager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,5 +468,5 @@ function getCertificateTypes(isMas: boolean, isDevelopment: boolean): CertType[]
468468
if (isDevelopment) {
469469
return isMas ? ["Mac Developer", "Apple Development"] : ["Mac Developer", "Developer ID Application"]
470470
}
471-
return isMas ? ["Apple Distribution"] : ["Developer ID Application"]
471+
return isMas ? ["3rd Party Mac Developer Application", "Apple Distribution"] : ["Developer ID Application"]
472472
}

0 commit comments

Comments
 (0)