Skip to content

Commit

Permalink
fix: always use LF line endings in patches
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniDigger committed Jul 21, 2023
1 parent 40e75b3 commit b0766c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ abstract class ApplyPatches : DefaultTask() {
.verbose(true)
.summary(true)
.logTo(ps)
.lineEnding("\n")
.build()
.operate()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ abstract class RebuildPatches : DefaultTask() {
.level(Level.FINE)
.verbose(true)
.summary(true)
.lineEnding("\n")
.build()
.operate()

Expand Down

0 comments on commit b0766c0

Please sign in to comment.