fix: bash script to generate release notes

pull/310/head v3.13.4
Mike Fridman 2023-07-07 18:44:42 -04:00
parent 8bdf173f36
commit 5864133d17
1 changed files with 1 additions and 1 deletions

View File

@ -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'