From 494c9bb729e85828341aa9e99e504c8a327f7c53 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Thu, 3 Dec 2020 23:41:34 +0100 Subject: [PATCH] ci: Fix echo stderr redirection Part-of: --- .gitlab-ci/check-commit-log.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "" >> $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() {