Skip to content

Commit

Permalink
Merge pull request #530 from handymenny/fix-newline-reparsing
Browse files Browse the repository at this point in the history
reparseindex: force UNIX new lines
  • Loading branch information
handymenny authored Nov 4, 2024
2 parents 77825ff + b1921ba commit 0a9f7d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ReparsingIndex {
list.forEach {
val str = Json.custom().encodeToString(it)
out.write(str)
out.newLine()
out.write("\n")
}
}
} catch (_: Exception) {}
Expand Down

0 comments on commit 0a9f7d6

Please sign in to comment.