Skip to content

Commit

Permalink
fix(mac): Adding Developer ID Application entry for development signi…
Browse files Browse the repository at this point in the history
…ng when not mas (#6094)

fix(mac): Removing 3rd Party Mac Developer Application certificate selector (#6101)
  • Loading branch information
mmaietta committed Jul 28, 2021
1 parent 68df5a8 commit 54b93ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app-builder-lib/src/macPackager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ export default class MacPackager extends PlatformPackager<MacConfiguration> {

function getCertificateTypes(isMas: boolean, isDevelopment: boolean): CertType[] {
if (isDevelopment) {
return ["Mac Developer", "Apple Development"]
return isMas ? ["Mac Developer", "Apple Development"] : ["Developer ID Application"]
}
return isMas ? ["3rd Party Mac Developer Application", "Apple Distribution"] : ["Developer ID Application"]
return isMas ? ["Apple Distribution"] : ["Developer ID Application"]
}

0 comments on commit 54b93ba

Please sign in to comment.