Attempt to format escape sequences correctly

This commit is contained in:
Andrew Morgan 2020-02-14 11:35:26 +00:00
parent f1c4458dfa
commit ee77059638

View file

@ -77,8 +77,8 @@ while read -r test_name; do
done <<< "${passed_but_expected_fail}"
# Trim test output strings
tests_to_add=$(echo $tests_to_add | xargs)
already_in_whitelist=$(echo $already_in_whitelist | xargs)
tests_to_add=$(echo -e $tests_to_add | xargs)
already_in_whitelist=$(echo -e $already_in_whitelist | xargs)
# Format output with markdown for buildkite annotation rendering purposes
if [ -n "${tests_to_add}" ] && [ -n "${already_in_whitelist}" ]; then