From 45a2ffa2dd95ee8ac3c4d466463c9a5b869b8da1 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Thu, 14 Mar 2024 12:19:57 +0100 Subject: [PATCH] fix: Use correct option description --- src/main/kotlin/app/revanced/cli/command/PatchCommand.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt index 616a0c6..a77cf32 100644 --- a/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt +++ b/src/main/kotlin/app/revanced/cli/command/PatchCommand.kt @@ -115,7 +115,6 @@ internal object PatchCommand : Runnable { ) private var keystoreFilePath: File? = null - // key store password @CommandLine.Option( names = ["--keystore-password"], description = ["The password of the keystore to sign the patched APK file with. Empty password by default."], @@ -124,7 +123,7 @@ internal object PatchCommand : Runnable { @CommandLine.Option( names = ["--alias"], - description = ["The alias of the key from the keystore to sign the patched APK file with."], + description = ["The alias of the keystore entry to sign the patched APK file with."], showDefaultValue = ALWAYS, ) private var alias = "ReVanced Key"