1
0
Fork 0

ci: Fix echo stderr redirection

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1622>
This commit is contained in:
Niels De Graef 2020-12-03 23:41:34 +01:00 committed by Florian Müllner
parent a40ab5650b
commit 494c9bb729

View file

@ -32,7 +32,7 @@ function append_failed_test_case() {
commit_short=${commit:0:8} commit_short=${commit:0:8}
echo "<testcase name=\"$test_name: $commit_short\"><failure message=\"$commit_short: $test_message\"/></testcase>" >> $JUNIT_REPORT_TESTS_FILE echo "<testcase name=\"$test_name: $commit_short\"><failure message=\"$commit_short: $test_message\"/></testcase>" >> $JUNIT_REPORT_TESTS_FILE
echo &>2 "Commit check failed: $commit_short: $test_message" echo >&2 "Commit check failed: $commit_short: $test_message"
} }
function append_passed_test_case() { function append_passed_test_case() {