Skip to content

Commit bdcd936

Browse files
committed
Fix list format in changelog
1 parent 97c562a commit bdcd936

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/IPublishGitHubRelease.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ interface IPublishGitHubRelease : INukeBuild
4040

4141
foreach (string s in entry.Value)
4242
{
43-
changelogBody.AppendLine(s);
43+
changelogBody.AppendLine($"- {s}");
4444
}
4545

4646
changelogBody.AppendLine();

0 commit comments

Comments
 (0)