Skip to content

Commit

Permalink
ci: Use say_err instead of echo
Browse files Browse the repository at this point in the history
We have a `say_err` function that echos to stderr, use it.
  • Loading branch information
tcharding committed Aug 13, 2024
1 parent a14c1d2 commit f56e456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/run_task.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f56e456

Please sign in to comment.