From a26b0ea64dcd0757b5b49c09137959751874d955 Mon Sep 17 00:00:00 2001 From: TheJeterLP Date: Sun, 10 Jul 2022 20:04:47 +0200 Subject: [PATCH] fix: Make clear what the --exclusive command actually does --- src/main/kotlin/app/revanced/cli/command/MainCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/cli/command/MainCommand.kt b/src/main/kotlin/app/revanced/cli/command/MainCommand.kt index 7c84cdf..e17b59a 100644 --- a/src/main/kotlin/app/revanced/cli/command/MainCommand.kt +++ b/src/main/kotlin/app/revanced/cli/command/MainCommand.kt @@ -78,7 +78,7 @@ internal object MainCommand : Runnable { @Option(names = ["-e", "--exclude"], description = ["Explicitly exclude patches"]) var excludedPatches = arrayOf() - @Option(names = ["--exclusive"], description = ["Exclusively include patches"]) + @Option(names = ["--exclusive"], description = ["Only installs the patches you include, not including any patch by default"]) var defaultExclude = false @Option(names = ["-i", "--include"], description = ["Include patches"])