feat: integrations merge

This commit is contained in:
oSumAtrIX 2022-04-09 04:53:31 +02:00
parent 6664f49a11
commit 919b34e174
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 3 additions and 1 deletions

View File

@ -12,12 +12,14 @@ fun main(args: Array<String>) {
SignatureParser.parse(args[2]).toTypedArray() // signatures.json
)
// add integrations dex container
patcher.addFiles(File(args[3]))
// load all patches
for (patch in patches) {
patcher.addPatches(patch())
}
// apply all patches
patcher.applyPatches().forEach{ (name, result) ->
println("$name: $result")
}