fix: gradle build script

Signed-off-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
Canny1913
2022-05-05 20:19:59 +03:00
committed by oSumAtrIX
parent eab58aa0a2
commit 6ffba3ef0a
3 changed files with 9 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
package app.revanced.cli
import picocli.CommandLine
internal fun main(args: Array<String>) {
CommandLine(MainCommand).execute(*args)
}

View File

@@ -2,7 +2,6 @@ package app.revanced.cli
import app.revanced.patch.PatchLoader
import app.revanced.patch.Patches
import picocli.CommandLine
import picocli.CommandLine.*
import java.io.File
@@ -57,8 +56,4 @@ internal object MainCommand : Runnable {
if (!wipe) return
File(cacheDirectory).deleteRecursively()
}
}
internal fun main(args: Array<String>) {
CommandLine(MainCommand).execute(*args)
}