Skip to content

Commit f0ea01a

Browse files
committed
Remove broken escape character
We are not using `echo -n`, so the `\n` is output literally rather than being escaped. It's not necessary anyway, so let's just get rid of it.
1 parent 8c2cf8d commit f0ea01a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws/sqs/process

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [[ -z $JSON_RESPONSE ]]; then
1818
exit 1
1919
fi
2020

21-
echo "JSON =\n$JSON_RESPONSE"
21+
echo "JSON = $JSON_RESPONSE"
2222

2323
PR=$(jq -r '.Messages[0].MessageAttributes.pr.StringValue' <<< $JSON_RESPONSE)
2424
URL=$(jq -r '.Messages[0].MessageAttributes.url.StringValue' <<< $JSON_RESPONSE)

0 commit comments

Comments
 (0)