Skip to content

Commit

Permalink
fix: remove metavar for parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe committed Jun 30, 2023
1 parent fe0b551 commit 497048f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ abstract class BaseCommand(name: String, actionDescription: String = "") :
private val debug: String by option("--debug", help = "enable debug logs")
.default("false")

val parameters: String? by option("--parameters", "-params", help = "array of additional parameters in JSON format ex. {\"key1\":\"value1\", \"key2\":\"value2\"}")
val parameters: String? by option("--parameters", help = "array of additional parameters in JSON format ex. {\"key1\":\"value1\", \"key2\":\"value2\"}")

private val serviceAccountInputStream: InputStream
get() {
Expand Down

0 comments on commit 497048f

Please sign in to comment.