From f56e456ed282a2a69ca140a0d6734259764f36bb Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 14 Aug 2024 09:32:03 +1000 Subject: [PATCH] ci: Use say_err instead of echo We have a `say_err` function that echos to stderr, use it. --- ci/run_task.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run_task.sh b/ci/run_task.sh index 398c00c..2b01b12 100755 --- a/ci/run_task.sh +++ b/ci/run_task.sh @@ -266,7 +266,7 @@ do_dup_deps() { duplicate_dependencies=$(eval "$tree_cmd") if [ "$duplicate_dependencies" -ne 0 ]; then - echo "Dependency tree is broken, contains duplicates" + say_err "Dependency tree is broken, contains duplicates" cargo tree --target=all --all-features --duplicates exit 1 fi