diff options
Diffstat (limited to 'aux/workflow')
-rwxr-xr-x | aux/workflow/assert-todos.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/aux/workflow/assert-todos.sh b/aux/workflow/assert-todos.sh index 991fefa..11db142 100755 --- a/aux/workflow/assert-todos.sh +++ b/aux/workflow/assert-todos.sh @@ -1,8 +1,12 @@ #!/bin/sh set -eu -if [ -e .git ] && git grep FIXME | grep -v '^TODOs.md' | - grep -v '^aux/workflow/assert-todos.sh'; then +# shellcheck disable=2086 +if [ -e .git ] && + git grep FIXME ${1:-} | + grep -v '^TODOs.md:' | + grep -v '^aux/workflow/assert-todos.sh:' +then echo "Found dangling FIXME markers on the project." >&2 echo "You should write them down properly on TODOs.md." >&2 exit 1 |