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

improved docs related to the private key #20

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ OPTIONS:
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
--itunes-connect-key-path <itunes-connect-key-path>
The path to the private key
(https://developer.apple.com/documentation/appstoreconnectapi/generating_tokens_for_api_requests)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ internal struct CreateProvisioningProfileCommand: ParsableCommand {
@Option(help: "The issuer id of the private key (https://developer.apple.com/documentation/appstoreconnectapi/generating_tokens_for_api_requests)")
internal var issuerID: String

@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")
@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.")
internal var privateKeyPath: String

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