Skip to content

Commit

Permalink
End files with single newline only (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
Trenly authored Oct 18, 2022
1 parent c7c579c commit 0c02bd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WingetCreateCore/Common/Serialization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public static string ToYaml<T>(this T value)
}

serialized.AppendLine();
serialized.AppendLine(manifestYaml);
serialized.Append(manifestYaml);

return serialized.ToString();
}
Expand Down

0 comments on commit 0c02bd5

Please sign in to comment.