diff options
author | EuAndreh <eu@euandre.org> | 2021-03-07 19:46:24 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-07 19:46:24 -0300 |
commit | 191f5712cb0450f980c386c2b6c5a3e427c099be (patch) | |
tree | 0c1f52f854bd068bd4e9853ea78beff3522d7390 /aux/workflow | |
parent | ci-build.sh: Also omit output of second rsync (diff) | |
download | server-191f5712cb0450f980c386c2b6c5a3e427c099be.tar.gz server-191f5712cb0450f980c386c2b6c5a3e427c099be.tar.xz |
assert-todos.sh: Remove reference to inexistant docbook-xsl/ directory
Diffstat (limited to 'aux/workflow')
-rwxr-xr-x | aux/workflow/assert-todos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aux/workflow/assert-todos.sh b/aux/workflow/assert-todos.sh index 203d465..cd7b611 100755 --- a/aux/workflow/assert-todos.sh +++ b/aux/workflow/assert-todos.sh @@ -1,7 +1,7 @@ #!/bin/sh set -eu -if git grep FIXME | grep -v '^TODOs.md' | grep -v '^aux/workflow/assert-todos.sh' | grep -v '^aux/docbook-xsl/'; then +if 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." exit 1 |