From 812ded362dcf042f7eef258ccdae0d1d8aa05334 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Fri, 13 Jan 2017 15:45:56 +1100 Subject: [PATCH] Also check bin/ for tabs Add bin/ to dib-lint basic script checks Change-Id: I92849ab608a6c792d790f041dc7614278c274d30 --- bin/dib-lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/dib-lint b/bin/dib-lint index 0b33790e8..c07ab99bf 100755 --- a/bin/dib-lint +++ b/bin/dib-lint @@ -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