File tree 1 file changed +3
-4
lines changed
src/main/kotlin/app/revanced/cli/command
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ internal object PatchCommand : Runnable {
29
29
@Spec
30
30
private lateinit var spec: CommandSpec
31
31
32
- @ArgGroup(multiplicity = " 0..*" )
32
+ @ArgGroup(exclusive = false , multiplicity = " 0..*" )
33
33
private var selection = mutableSetOf<Selection >()
34
34
35
35
internal class Selection {
36
- @ArgGroup(exclusive = false , multiplicity = " 1 " )
36
+ @ArgGroup(exclusive = false )
37
37
internal var enabled: EnableSelection ? = null
38
38
39
39
internal class EnableSelection {
@@ -65,7 +65,7 @@ internal object PatchCommand : Runnable {
65
65
internal var options = mutableMapOf<String , Any ?>()
66
66
}
67
67
68
- @ArgGroup(exclusive = false , multiplicity = " 1 " )
68
+ @ArgGroup(exclusive = false )
69
69
internal var disable: DisableSelection ? = null
70
70
71
71
internal class DisableSelection {
@@ -291,7 +291,6 @@ internal object PatchCommand : Runnable {
291
291
patcherTemporaryFilesPath,
292
292
aaptBinaryPath?.path,
293
293
patcherTemporaryFilesPath.absolutePath,
294
- true ,
295
294
),
296
295
).use { patcher ->
297
296
val packageName = patcher.context.packageMetadata.packageName
You can’t perform that action at this time.
0 commit comments