Update grep for six to not falsely trigger when six is only a substring of a different library

pull/16362/head
Toshio Kuratomi 9 years ago
parent 4304574c00
commit ccbcb4b5e9

@ -3,7 +3,7 @@
# Do we want to check dynamic inventory, bin, etc?
BASEDIR=${1-"lib"}
SIX_USERS=$(find "$BASEDIR" -name '*.py' -exec grep -H six \{\} \;|grep import |grep -v ansible.compat)
SIX_USERS=$(find "$BASEDIR" -name '*.py' -exec grep -wH six \{\} \;|grep import |grep -v ansible.compat)
if test -n "$SIX_USERS" ; then
printf "$SIX_USERS"
exit 1

Loading…
Cancel
Save