mirror of
https://github.com/revanced/revanced-cli.git
synced 2024-11-04 19:07:22 +01:00
feat: use friendly descriptions
This commit is contained in:
parent
0350b7f1a2
commit
3dd875d14c
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user