Skip to content

Commit d1bd6b4

Browse files
authored
Fix new Apple certificates listing (#114)
* Fix new Apple certificates listing * PR update
1 parent 5b0b8e8 commit d1bd6b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

codesign/certificates.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,21 @@ var (
2121
iOSCertificateNames = []string{
2222
"iPhone Developer", // type: "iOS Development"
2323
"iPhone Distribution", // type: "iOS Distribution"
24-
"Apple Development", // type: "iOS Development for Xcode 11", id: "83Q87W3TGH"
25-
"Apple Distribution", // type: "iOS Distribution for Xcode 11", id: "WXV89964HE"
24+
"Apple Development", // type: "Apple Development"
25+
"Apple Distribution", // type: "Apple Distribution"
2626
}
2727

2828
macOSCertificateNames = []string{
2929
"Mac Developer", // type: "Mac Development"
3030
"3rd Party Mac Developer Application", // type: "Mac App Distribution"
3131
"Developer ID Application", // type: "Developer ID Application"
32+
"Apple Development", // type: "Apple Development"
33+
"Apple Distribution", // type: "Apple Distribution"
3234
}
3335

3436
macOSInstallerCertificateNames = []string{
3537
"3rd Party Mac Developer Installer", // type: "Mac Installer Distribution"
3638
"Developer ID Installer", // type: "Developer ID Installer"
37-
"Apple Development", // type: "iOS Development for Xcode 11", id: "83Q87W3TGH"
38-
"Apple Distribution", // type: "iOS Distribution for Xcode 11", id: "WXV89964HE"
3939
}
4040
)
4141

0 commit comments

Comments
 (0)