Merge "Also check bin/ for tabs"

This commit is contained in:
Jenkins 2017-01-13 18:33:32 +00:00 committed by Gerrit Code Review
commit 56d0dfc27b

View File

@ -204,7 +204,7 @@ done
echo "Checking indents..."
for i in $(find elements -type f -and -name '*.rst' -or -type f -executable); do
for i in $(find bin elements -type f -and -name '*.rst' -or -type f -executable); do
# Check for tab indentation
if ! excluded tabindent; then
if grep -q $'^ *\t' ${i}; then