Skip to content

Commit ac3a8f6

Browse files
committed
fix: correctly word option descriptions
Signed-off-by: oSumAtrIX <[email protected]>
1 parent e900ce8 commit ac3a8f6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/main/kotlin/app/revanced/cli/command/MainCommand.kt

+5-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,16 @@ internal object MainCommand : Runnable {
3535
lateinit var args: Args
3636

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

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

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

4750
@ArgGroup(exclusive = false)

0 commit comments

Comments
 (0)