Skip to content

Commit

Permalink
fixed doubled dashes on arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
samdeane committed Nov 26, 2024
1 parent c6ef1c2 commit 3aab02b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/ReleaseTools/SharedOptions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ struct UserOption: ParsableArguments {
}

struct ApiKeyOption: ParsableArguments {
@Option(name: .customLong("--api-key"), help: "The App Store Connect api key ID we're using.")
@Option(name: .customLong("api-key"), help: "The App Store Connect api key ID we're using.")
var key: String?
}

struct ApiIssuerOption: ParsableArguments {
@Option(name: .customLong("--api-issuer"), help: "The App Store Connect issuer ID we're using.")
@Option(name: .customLong("api-issuer"), help: "The App Store Connect issuer ID we're using.")
var issuer: String?
}

Expand Down

0 comments on commit 3aab02b

Please sign in to comment.