Skip to content

Commit

Permalink
feat: improve description of options (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Dec 31, 2022
1 parent ccce9c9 commit b69e784
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/app/revanced/cli/command/MainCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ internal object MainCommand : Runnable {
}

class PatchArgs {
@Option(names = ["-b", "--bundles"], description = ["One or more bundles of patches"], required = true)
@Option(names = ["-b", "--bundle"], description = ["One or more bundles of patches"], required = true)
var patchBundles = arrayOf<String>()

@Option(names = ["--options"], description = ["Configuration file for all patch options"])
Expand All @@ -63,7 +63,7 @@ internal object MainCommand : Runnable {
}

class ListingArgs {
@Option(names = ["-l", "--list"], description = ["List patches only"], required = true)
@Option(names = ["-l", "--list"], description = ["List patches"], required = true)
var listOnly: Boolean = false

@Option(names = ["--with-versions"], description = ["List patches with compatible versions"])
Expand Down

0 comments on commit b69e784

Please sign in to comment.