diff options
author | Niels De Graef <nielsdegraef@gmail.com> | 2020-12-03 23:41:34 +0100 |
---|---|---|
committer | Florian Müllner <fmuellner@gnome.org> | 2020-12-04 00:01:03 +0100 |
commit | 494c9bb729e85828341aa9e99e504c8a327f7c53 (patch) | |
tree | f0c0a23997eec750b0d86b83bc17ef7fd5cb854f /.gitlab-ci | |
parent | a40ab5650bc20d6a91b106766160cb719a6593cb (diff) | |
download | mutter-494c9bb729e85828341aa9e99e504c8a327f7c53.tar.gz |
ci: Fix echo stderr redirectionwip/nielsdg/fix-check-commit-msg-stderr
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1622>
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x | .gitlab-ci/check-commit-log.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/check-commit-log.sh b/.gitlab-ci/check-commit-log.sh index f2b9c36ef..d8b65c195 100755 --- a/.gitlab-ci/check-commit-log.sh +++ b/.gitlab-ci/check-commit-log.sh @@ -32,7 +32,7 @@ function append_failed_test_case() { commit_short=${commit:0:8} 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() { |