From dea5c5cde7a53c521d5bc2842be3c9c2365af566 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Tue, 18 Jan 2022 14:10:44 -0300 Subject: aux/workflow/assert-todos.sh: Emit warnings to STDERR instead of STDOUT --- aux/workflow/assert-todos.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aux/workflow/assert-todos.sh b/aux/workflow/assert-todos.sh index bc4907d..991fefa 100755 --- a/aux/workflow/assert-todos.sh +++ b/aux/workflow/assert-todos.sh @@ -3,8 +3,8 @@ set -eu if [ -e .git ] && git grep FIXME | grep -v '^TODOs.md' | grep -v '^aux/workflow/assert-todos.sh'; then - echo "Found dangling FIXME markers on the project." - echo "You should write them down properly on TODOs.md." + echo "Found dangling FIXME markers on the project." >&2 + echo "You should write them down properly on TODOs.md." >&2 exit 1 fi -- cgit v1.2.3