Skip to content

Commit

Permalink
fix: append lf to eof
Browse files Browse the repository at this point in the history
  • Loading branch information
satoren committed Jul 13, 2021
1 parent e44f463 commit 82bbdf0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/excoveralls/lcov.ex
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ defmodule ExCoveralls.Lcov do
end

def generate_lcov(stats, _options) do
Enum.map(stats, fn stat -> generate_lcov_file(stat) end) |> Enum.join("\n")
lcov = Enum.map(stats, fn stat -> generate_lcov_file(stat) end) |> Enum.join("\n")
lcov <> "\n"
end

def generate_lcov_file(stat) do
Expand Down

0 comments on commit 82bbdf0

Please sign in to comment.