Skip to content

Commit 8f3bd6c

Browse files
Merge pull request #20 from omarzl/task/improved-priv-key-docs
improved docs related to the private key
2 parents 2036d19 + 151d705 commit 8f3bd6c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ OPTIONS:
9595
The path to a private key to use for generating PEM
9696
and P12 files. This key will be attached to any
9797
generated certificates or profiles
98+
Use `openssl genrsa -out key.pem 2048` to generate it
9899
--itunes-connect-key-path <itunes-connect-key-path>
99100
The path to the private key
100101
(https://developer.apple.com/documentation/appstoreconnectapi/generating_tokens_for_api_requests)

Sources/SignHereLibrary/Commands/CreateProvisioningProfileCommand.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ internal struct CreateProvisioningProfileCommand: ParsableCommand {
130130
@Option(help: "The issuer id of the private key (https://developer.apple.com/documentation/appstoreconnectapi/generating_tokens_for_api_requests)")
131131
internal var issuerID: String
132132

133-
@Option(help: "The path to a private key to use for generating PEM and P12 files. This key will be attached to any generated certificates or profiles")
133+
@Option(help: "The path to a private key to use for generating PEM and P12 files. This key will be attached to any generated certificates or profiles. Use `openssl genrsa -out key.pem 2048` to generate it.")
134134
internal var privateKeyPath: String
135135

136136
@Option(help: "The path to the private key (https://developer.apple.com/documentation/appstoreconnectapi/generating_tokens_for_api_requests)")

0 commit comments

Comments
 (0)