Skip to content

Commit

Permalink
Remove double space in release body
Browse files Browse the repository at this point in the history
  • Loading branch information
Richienb authored May 24, 2024
1 parent d2c66a8 commit 9c36632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const printCommitLog = async (repoUrl, registryUrl, fromLatestTag, releaseBranch
}).join('\n');

const releaseNotes = nextTag => commits.map(commit =>
`- ${htmlEscape(commit.message)} ${commit.id}`,
`- ${htmlEscape(commit.message)} ${commit.id}`,
).join('\n') + `\n\n${repoUrl}/compare/${revision}...${nextTag}`;

const commitRange = util.linkifyCommitRange(repoUrl, commitRangeText);
Expand Down

0 comments on commit 9c36632

Please sign in to comment.