fix: this tiny thing has caused me the worst headache ever in my life

This commit is contained in:
Lucaskyy 2022-04-12 16:29:21 +02:00
parent 8d96ec83cb
commit a37304e032
No known key found for this signature in database
GPG Key ID: 1530BFF96D1EEB89

View File

@ -74,7 +74,7 @@ class Main {
bar.reset().maxHint(dexFiles.size.toLong())
.extraMessage = "Saving dex files"
dexFiles.forEach { (dexName, dexData) ->
Files.write(File(output, dexName).toPath(), dexData.buffer)
Files.write(File(output, dexName).toPath(), dexData.data)
bar.step()
}
bar.close()