diff options
author | EuAndreh <eu@euandre.org> | 2022-10-21 00:23:42 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-21 00:23:42 -0300 |
commit | 55f968cfb0cbacb2ca06d37f288f27d066728cf7 (patch) | |
tree | b994ce632ca59af42b57fa208568b8dc0b813209 | |
parent | Makefile: Exclude subroutine lint of perlcritic (diff) | |
download | dotfiles-55f968cfb0cbacb2ca06d37f288f27d066728cf7.tar.gz dotfiles-55f968cfb0cbacb2ca06d37f288f27d066728cf7.tar.xz |
Makefile: Exclude global gitignore file from check-fixme target
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -55,7 +55,7 @@ check-perlcritic: xargs perlcritic --exclude=subroutine check-fixme: - if git grep FIXME -- ':(exclude)Makefile'; then \ + if git grep FIXME -- ':(exclude)Makefile' ':(exclude)etc/git/ignore'; then \ printf 'Leftover FIXME markers.\n' >&2; \ exit 1; \ fi |