feat: use friendly descriptions

This commit is contained in:
oSumAtrIX 2023-08-24 16:53:31 +02:00
parent 0350b7f1a2
commit 3dd875d14c
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import java.util.logging.Logger
@Command(
name = "uninstall",
description = ["Uninstall a patched APK file from the devices with the supplied ADB device serials"]
description = ["Uninstall a patched app from the devices with the supplied ADB device serials"]
)
internal object UninstallCommand : Runnable {
private val logger = Logger.getLogger(UninstallCommand::class.java.name)
@ -16,7 +16,7 @@ internal object UninstallCommand : Runnable {
@Parameters(description = ["ADB device serials"], arity = "1..*")
private lateinit var deviceSerials: Array<String>
@Option(names = ["-p", "--package-name"], description = ["Package name to uninstall"], required = true)
@Option(names = ["-p", "--package-name"], description = ["Package name of the app to uninstall"], required = true)
private lateinit var packageName: String
@Option(