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

2 comments on commit a37304e

@oSumAtrIX
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kudos on discovering this issue 😂

@Sculas
Copy link
Contributor Author

@Sculas Sculas commented on a37304e Apr 12, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd rather die than debug this shit again :')

Please sign in to comment.