diff options
author | EuAndreh <eu@euandre.org> | 2022-05-12 21:16:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-05-12 21:16:45 -0300 |
commit | 38e6f082461b392818db3340fadda9b1d639a1a5 (patch) | |
tree | 117e18b84fa230972d13cc0ae70401e3f3c7d33f /etc | |
parent | etc/bash/check.sh: Do not assert loading ~/.profile goes without error (diff) | |
download | dotfiles-38e6f082461b392818db3340fadda9b1d639a1a5.tar.gz dotfiles-38e6f082461b392818db3340fadda9b1d639a1a5.tar.xz |
etc/bash/check.sh: Add assert for FIXME markers
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/bash/check.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/bash/check.sh b/etc/bash/check.sh index 1114bd1..7b9b921 100755 --- a/etc/bash/check.sh +++ b/etc/bash/check.sh @@ -53,3 +53,8 @@ shellcheck -xe 1090,1091 \ "$XDG_CONFIG_HOME"/bash/vcs-ps1.sh \ "$XDG_CONFIG_HOME"/bash/check.sh \ "$XDG_CONFIG_HOME"/bash/privrc.sh + +if git grep FIXME; then + printf 'Leftover FIXME markers\n' >&2 + exit 1 +fi |