Skip to content

Commit

Permalink
fix: correctly word option descriptions
Browse files Browse the repository at this point in the history
Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
  • Loading branch information
oSumAtrIX committed Mar 2, 2023
1 parent e900ce8 commit ac3a8f6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/main/kotlin/app/revanced/cli/command/MainCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,16 @@ internal object MainCommand : Runnable {
lateinit var args: Args

class Args {
@Option(names = ["-a", "--apk"], description = ["Input file to be patched"], required = true)
@Option(names = ["-a", "--apk"], description = ["Input APK file to be patched"], required = true)
lateinit var inputFile: File

@Option(names = ["--uninstall"], description = ["Uninstall the mount variant"])
var uninstall: Boolean = false

@Option(names = ["-d", "--deploy-on"], description = ["If specified, deploy to adb device with given name"])
@Option(
names = ["-d", "--deploy-on"],
description = ["If specified, deploy to device over ADB with given name"]
)
var deploy: String? = null

@ArgGroup(exclusive = false)
Expand Down

0 comments on commit ac3a8f6

Please sign in to comment.