diff options
Diffstat (limited to '')
-rwxr-xr-x | scripts/assert-todos.sh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/scripts/assert-todos.sh b/scripts/assert-todos.sh index 14a1b71..df7a96d 100755 --- a/scripts/assert-todos.sh +++ b/scripts/assert-todos.sh @@ -1,11 +1,6 @@ -#!/usr/bin/env bash -set -Eeuo pipefail -cd "$(dirname "${BASH_SOURCE[0]}")" -cd ../ +#!/bin/sh -eux -# shellcheck disable=2046 -if grep -R FIXME $(git ls-files) | \ - grep -Ev '^(vendor/|.git/|scripts/assert-todos.sh|locale/)'; then +if git grep FIXME | 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 |