Skip to content

Commit

Permalink
feat: show description when listing patches
Browse files Browse the repository at this point in the history
  • Loading branch information
bogadana authored and oSumAtrIX committed Jun 21, 2022
1 parent e126436 commit af32572
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/app/revanced/cli/command/MainCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import app.revanced.cli.patcher.Patcher
import app.revanced.cli.signing.Signing
import app.revanced.patcher.PatcherOptions
import app.revanced.patcher.extensions.PatchExtensions.patchName
import app.revanced.patcher.extensions.PatchExtensions.description
import app.revanced.patcher.util.patch.implementation.JarPatchBundle
import app.revanced.utils.adb.Adb
import picocli.CommandLine.*
Expand Down Expand Up @@ -79,7 +80,7 @@ internal object MainCommand : Runnable {
override fun run() {
if (args.lArgs?.listOnly == true) {
for (patchBundlePath in args.patchBundles) for (patch in JarPatchBundle(patchBundlePath).loadPatches()) {
println("[available] ${patch.patchName}")
println("[available] ${patch.patchName}: ${patch.description}")
}
return
}
Expand Down

0 comments on commit af32572

Please sign in to comment.