From fad8601a1f1d1231ef082e80cf76654c11b37401 Mon Sep 17 00:00:00 2001 From: Vipul Delwadia Date: Wed, 13 May 2020 21:08:05 +1200 Subject: [PATCH 1/2] Update codesigngroup.go --- codesigndocuitests/codesigngroup.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codesigndocuitests/codesigngroup.go b/codesigndocuitests/codesigngroup.go index 604cd253..06d5d636 100644 --- a/codesigndocuitests/codesigngroup.go +++ b/codesigndocuitests/codesigngroup.go @@ -242,11 +242,11 @@ func collectExportCodeSignGroups(testRunner IOSTestRunner, installedCertificates if len(certificateOptions) == 1 { selectedCertificateOption = certificateOptions[0] - fmt.Printf("Codesign Indentity for %s signing: %s\n", selectedCodeSignMethod, selectedCertificateOption) + fmt.Printf("Codesign Identity for %s signing: %s\n", selectedCodeSignMethod, selectedCertificateOption) } else { sort.Strings(certificateOptions) - question := fmt.Sprintf("Select the Codesign Indentity for %s method", selectedCodeSignMethod) + question := fmt.Sprintf("Select the Codesign Identity for %s method", selectedCodeSignMethod) selectedCertificateOption, err = goinp.SelectFromStringsWithDefault(question, 1, certificateOptions) if err != nil { return nil, fmt.Errorf("failed to read input: %s", err) @@ -262,7 +262,7 @@ func collectExportCodeSignGroups(testRunner IOSTestRunner, installedCertificates } } if selectedCertificate == nil { - return nil, errors.New("failed to find selected Codesign Indentity") + return nil, errors.New("failed to find selected Codesign Identity") } // Select Profiles From 043be5efcf5e431f0978051c9c5de87000faf951 Mon Sep 17 00:00:00 2001 From: Vipul Delwadia Date: Wed, 13 May 2020 21:08:49 +1200 Subject: [PATCH 2/2] Update codesigngroup.go --- codesigndoc/codesigngroup.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codesigndoc/codesigngroup.go b/codesigndoc/codesigngroup.go index b20d5af7..b8e7bb09 100644 --- a/codesigndoc/codesigngroup.go +++ b/codesigndoc/codesigngroup.go @@ -327,11 +327,11 @@ func collectExportCodeSignGroups(archive Archive, installedCertificates []certif if len(certificateOptions) == 1 { selectedCertificateOption = certificateOptions[0] - fmt.Printf("Codesign Indentity for %s ipa export: %s\n", selectedExportMethod, selectedCertificateOption) + fmt.Printf("Codesign Identity for %s ipa export: %s\n", selectedExportMethod, selectedCertificateOption) } else { sort.Strings(certificateOptions) - question := fmt.Sprintf("Select the Codesign Indentity for %s ipa export", selectedExportMethod) + question := fmt.Sprintf("Select the Codesign Identity for %s ipa export", selectedExportMethod) selectedCertificateOption, err = goinp.SelectFromStringsWithDefault(question, 1, certificateOptions) if err != nil { return nil, fmt.Errorf("failed to read input: %s", err) @@ -347,7 +347,7 @@ func collectExportCodeSignGroups(archive Archive, installedCertificates []certif } } if selectedCertificate == nil { - return nil, errors.New("failed to find selected Codesign Indentity") + return nil, errors.New("failed to find selected Codesign Identity") } // Select Profiles