Skip to content

Commit

Permalink
fix: Use correct option description
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Mar 14, 2024
1 parent 932494e commit 45a2ffa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
Expand Up @@ -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."],
Expand All @@ -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"
Expand Down

0 comments on commit 45a2ffa

Please sign in to comment.