diff options
author | EuAndreh <eu@euandre.org> | 2022-01-18 14:10:44 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-18 14:10:44 -0300 |
commit | dea5c5cde7a53c521d5bc2842be3c9c2365af566 (patch) | |
tree | 85c079392cab8c58222ad98b6fe628578b71594d | |
parent | Makefile: Run ShellCheck on src/td.in in "dev-check" target (diff) | |
download | td-dea5c5cde7a53c521d5bc2842be3c9c2365af566.tar.gz td-dea5c5cde7a53c521d5bc2842be3c9c2365af566.tar.xz |
aux/workflow/assert-todos.sh: Emit warnings to STDERR instead of STDOUT
-rwxr-xr-x | aux/workflow/assert-todos.sh | 4 |
1 files 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 |