fix: add callback for addFiles

This commit is contained in:
Lucaskyy 2022-06-22 16:42:02 +02:00
parent 8a49dcc110
commit 87ffaa4bdb
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89

View File

@ -66,5 +66,7 @@ fun Patcher.applyPatchesVerbose() {
}
fun Patcher.mergeFiles() {
this.addFiles(args.pArgs!!.mergeFiles)
this.addFiles(args.pArgs!!.mergeFiles) {
println("[merged] ${it.name}")
}
}