e617d1ffce
We still have 79 bashate warnings for lines longer than 79 characters. bashate also warns about here documents, so cutting down on all of them is not worth it. Let's disable these bashate warnings so that we can see the real problems. Warnings disabled are of the form: [W] E006: Line too long: ... Change-Id: I3abfae4432f9432af6e0d8b43bfc340673f06802
6 lines
188 B
Bash
Executable File
6 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ROOT=$(readlink -fn $(dirname $0)/.. )
|
|
find $ROOT -not -wholename \*.tox/\* -and -not -wholename \*.test/\* \
|
|
-and -name \*.sh -print0 | xargs -0 bashate -v --ignore E006
|