Skip to content

Commit

Permalink
fix: this tiny thing has caused me the worst headache ever in my life
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas committed Apr 12, 2022
1 parent 8d96ec8 commit a37304e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/cli/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit a37304e

Please sign in to comment.