From 3aab02bc4a0c322599eecfac40dffd83f8289fa3 Mon Sep 17 00:00:00 2001 From: Sam Deane Date: Tue, 26 Nov 2024 16:41:10 +0000 Subject: [PATCH] fixed doubled dashes on arguments --- Sources/ReleaseTools/SharedOptions.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/ReleaseTools/SharedOptions.swift b/Sources/ReleaseTools/SharedOptions.swift index 0c06ee3..72835bc 100644 --- a/Sources/ReleaseTools/SharedOptions.swift +++ b/Sources/ReleaseTools/SharedOptions.swift @@ -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? }