1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

avoid doing cmp on .git

This commit is contained in:
Brian Coca 2017-07-03 15:15:38 -04:00
parent ec6e3b0e32
commit 272f5fd03a

View file

@ -4,6 +4,7 @@ CMP_USERS=$(grep -rI ' cmp[^a-zA-Z0-9_:=]' . \
--exclude-dir .tox \ --exclude-dir .tox \
| grep -v \ | grep -v \
-e lib/ansible/module_utils/six/_six.py \ -e lib/ansible/module_utils/six/_six.py \
-e .git \
-e test/sanity/code-smell/no-list-cmp.sh -e test/sanity/code-smell/no-list-cmp.sh
) )