Skip to content

Commit

Permalink
Apple Development & Apple Distribution certificate (#112)
Browse files Browse the repository at this point in the history
Adds support for new types of Apple certificates introduced in Xcode 11
  • Loading branch information
rozd authored and godrei committed Oct 4, 2019
1 parent 3f16f92 commit 5b0b8e8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion codesign/certificates.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ const (

var (
iOSCertificateNames = []string{
"iPhone Developer", //type: "iOS Development"
"iPhone Developer", // type: "iOS Development"
"iPhone Distribution", // type: "iOS Distribution"
"Apple Development", // type: "iOS Development for Xcode 11", id: "83Q87W3TGH"
"Apple Distribution", // type: "iOS Distribution for Xcode 11", id: "WXV89964HE"
}

macOSCertificateNames = []string{
Expand All @@ -32,6 +34,8 @@ var (
macOSInstallerCertificateNames = []string{
"3rd Party Mac Developer Installer", // type: "Mac Installer Distribution"
"Developer ID Installer", // type: "Developer ID Installer"
"Apple Development", // type: "iOS Development for Xcode 11", id: "83Q87W3TGH"
"Apple Distribution", // type: "iOS Distribution for Xcode 11", id: "WXV89964HE"
}
)

Expand Down

0 comments on commit 5b0b8e8

Please sign in to comment.