diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | build-aux/workflow/assert-todos.sh (renamed from build-aux/assert-todos.sh) | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ check: sh build-aux/assert-spelling.sh sh build-aux/assert-shellcheck.sh - sh build-aux/assert-todos.sh + sh build-aux/workflow/assert-todos.sh sh build-aux/extract-translations.sh sh build-aux/apply-translations.sh diff --git a/build-aux/assert-todos.sh b/build-aux/workflow/assert-todos.sh index 00fdeec..1d568cb 100755 --- a/build-aux/assert-todos.sh +++ b/build-aux/workflow/assert-todos.sh @@ -1,7 +1,7 @@ #!/bin/sh set -eu -if git grep FIXME | grep -v '^TODOs.md' | grep -v '^build-aux/assert-todos.sh' | grep -v '^build-aux/docbook-xsl/'; then +if git grep FIXME | grep -v '^TODOs.md' | grep -v '^build-aux/workflow/assert-todos.sh' | grep -v '^build-aux/docbook-xsl/'; then echo "Found dangling FIXME markers on the project." echo "You should write them down properly on TODOs.md." exit 1 |