From 619b496317b81dd8c3979621a6fe4485c7b88cd6 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 9 May 2025 14:31:58 -0400 Subject: [PATCH] Fix release notes * Stop aggressively deleting all the newlines --- .github/release-notes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/release-notes.sh b/.github/release-notes.sh index 3fe3f6b17..9937c18cf 100755 --- a/.github/release-notes.sh +++ b/.github/release-notes.sh @@ -24,7 +24,7 @@ gh api "/repos/${GITHUB_REPOSITORY}/releases/generate-notes" \ trim_trailing_newlines() { local text text="$(cat)" - echo -n "${text//$'\n'}" + echo -n "${text}" } linkify_gh() {