Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix new Apple certificates listing #114

Merged
merged 2 commits into from
Oct 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions codesign/certificates.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ var (
iOSCertificateNames = []string{
"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"
"Apple Development", // type: "Apple Development"
"Apple Distribution", // type: "Apple Distribution"
}

macOSCertificateNames = []string{
"Mac Developer", // type: "Mac Development"
"3rd Party Mac Developer Application", // type: "Mac App Distribution"
"Developer ID Application", // type: "Developer ID Application"
"Apple Development", // type: "Apple Development"
"Apple Distribution", // type: "Apple Distribution"
}

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