Also check bin/ for tabs

Add bin/ to dib-lint basic script checks

Change-Id: I92849ab608a6c792d790f041dc7614278c274d30
This commit is contained in:
Ian Wienand 2017-01-13 15:45:56 +11:00
parent 14957664d4
commit 812ded362d
1 changed files with 1 additions and 1 deletions

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