Skip to content

Commit

Permalink
Merge pull request #3206 from thomasjacquin/addMessage.sh-add-missing…
Browse files Browse the repository at this point in the history
…-"-e"-to-echo

Update addMessage.sh: add missing "-e" to echo
  • Loading branch information
EricClaeys authored Dec 20, 2023
2 parents 9eed01e + 1cd7d06 commit e0efebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/addMessage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ COUNT=0
TAB="$(echo -e "\t")"

# Convert newlines to HTML breaks.
MESSAGE="$( echo -n "${MESSAGE}" |
MESSAGE="$( echo -en "${MESSAGE}" |
awk 'BEGIN { l=0; } { if (++l > 1) printf("<br>"); printf("%s", $0); }' )"
MESSAGE="${MESSAGE// /&nbsp;&nbsp;}"

Expand Down

0 comments on commit e0efebf

Please sign in to comment.