Skip to content

Commit

Permalink
fix: bash script to generate release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
mfridman committed Jul 7, 2023
1 parent 8bdf173 commit 5864133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ while IFS= read -r LINE; do
if [[ -z "${LINE}" ]]; then
continue
fi
items+="$(echo "${LINE}" | xargs)"
items+="$(echo "${LINE}" | xargs -0)"
# Add a newline between each item
if [[ -n "$items" ]]; then
items+=$'\n'
Expand Down

0 comments on commit 5864133

Please sign in to comment.