diff options
author | EuAndreh <eu@euandre.org> | 2020-12-19 03:01:16 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-19 03:21:12 -0300 |
commit | 08e4129b5e77b960ebc5ca66cec34c49a6e9426d (patch) | |
tree | f34d0464eaf3570d311f022ea1147cb062d93083 /scripts/assert-todos.sh | |
parent | Use 'post' layout for pastebins (diff) | |
download | euandre.org-08e4129b5e77b960ebc5ca66cec34c49a6e9426d.tar.gz euandre.org-08e4129b5e77b960ebc5ca66cec34c49a6e9426d.tar.xz |
Stop considering templates/ in scripts
Diffstat (limited to '')
-rwxr-xr-x | scripts/assert-todos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/assert-todos.sh b/scripts/assert-todos.sh index d33b263..14a1b71 100755 --- a/scripts/assert-todos.sh +++ b/scripts/assert-todos.sh @@ -5,7 +5,7 @@ cd ../ # shellcheck disable=2046 if grep -R FIXME $(git ls-files) | \ - grep -Ev '^(vendor/|.git/|scripts/assert-todos.sh|templates|locale/)'; then + grep -Ev '^(vendor/|.git/|scripts/assert-todos.sh|locale/)'; then echo "Found dangling FIXME markers on the project." echo "You should write them down properly on TODOs.org." exit 1 |