From 31133da1f9011436149cd06019a821bb1227f747 Mon Sep 17 00:00:00 2001 From: John Locke Date: Mon, 15 Aug 2016 13:49:17 -0700 Subject: [PATCH] Use echo -n to suppress trailing newlines --- bin/out | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/out b/bin/out index 556eb0d..48cddc0 100755 --- a/bin/out +++ b/bin/out @@ -51,7 +51,7 @@ then text="$(eval printf ${text} )" [[ -z "${text}" ]] && text="_(missing notification text)_" - text="$(echo "${text}" | jq -R -s .)" + text="$(echo -n "${text}" | jq -R -s .)" [[ "${token}" != "null" ]] && username="$(eval "printf ${token}" | jq -R -s .)" [[ "${room_id}" != "null" ]] && room_id="$(eval "printf ${room_id}" | jq -R -s .)" @@ -74,13 +74,13 @@ EOF } EOF )" - body=$(echo $body | jq -c ".build=$builddata") + body=$(echo -n $body | jq -c ".build=$builddata") if [ -n "$DATA_FILE_CONTENT" ]; then - body=$(echo $body | jq -c ".data=$DATA_FILE_CONTENT") + body=$(echo -n $body | jq -c ".data=$DATA_FILE_CONTENT") fi fi - compact_body="$(echo "${body}" | jq -c '.')" + compact_body="$(echo -n "${body}" | jq -c '.')" if [[ "$silent" == "true" ]] then