diff options
author | EuAndreh <eu@euandre.org> | 2023-03-13 14:25:15 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-13 14:25:15 -0300 |
commit | 862271d704f1d096a26e0b3ff147b70ae94a64e3 (patch) | |
tree | cef7a195e779602beb9e951e6b7dbfabc69d5321 /aux/workflow/assert-todos.sh | |
parent | git mv src/xyz/euandreh/* src/org/euandre/ (diff) | |
download | package-repository-862271d704f1d096a26e0b3ff147b70ae94a64e3.tar.gz package-repository-862271d704f1d096a26e0b3ff147b70ae94a64e3.tar.xz |
rm -rf aux/ po/
Diffstat (limited to '')
-rwxr-xr-x | aux/workflow/assert-todos.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/aux/workflow/assert-todos.sh b/aux/workflow/assert-todos.sh deleted file mode 100755 index f4fd965..0000000 --- a/aux/workflow/assert-todos.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -set -eu - -# shellcheck disable=2086 -if [ -e .git ] && - git grep FIXME ${1:-} | - grep -v '^TODOs.md:' | - grep -v '^aux/workflow/assert-todos.sh:' -then - echo "Found dangling FIXME markers on the project." >&2 - echo "You should write them down properly on TODOs.md." >&2 - exit 1 -fi - -td -L |