diff options
author | nixpkgs-review <nixpkgs-review@example.com> | 2020-11-05 11:49:13 -0300 |
---|---|---|
committer | nixpkgs-review <nixpkgs-review@example.com> | 2020-11-05 11:49:36 -0300 |
commit | 2aa316e99386778e5480030a11fb492d10ac68ff (patch) | |
tree | 7cf9088c58d0c8e977c466d4c269cc1dc096b640 /scripts/assert-todos.sh | |
parent | egrep -> grep -E (diff) | |
download | euandre.org-2aa316e99386778e5480030a11fb492d10ac68ff.tar.gz euandre.org-2aa316e99386778e5480030a11fb492d10ac68ff.tar.xz |
Remove FIXME and filter locale from check
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 a59b4cd..d33b263 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)'; then + grep -Ev '^(vendor/|.git/|scripts/assert-todos.sh|templates|locale/)'; then echo "Found dangling FIXME markers on the project." echo "You should write them down properly on TODOs.org." exit 1 |