From 8079e4ee6612c587be24e10c40936e3a750c4096 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 20 Aug 2021 19:04:44 -0300 Subject: aux/workflow/repocheck.sh: Run dev-check, adapt scripts that depend on Git repo --- aux/workflow/assert-todos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aux/workflow/assert-todos.sh') diff --git a/aux/workflow/assert-todos.sh b/aux/workflow/assert-todos.sh index c21ebb9..bc4907d 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' | +if [ -e .git ] && 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." -- cgit v1.2.3