926ba11184
We ignore E006 which is line lenght longer than 79 characters. We don't actually care about that. Fix E042 in run_all.sh this represents a potential real issue in bash as it will hide errors. This makes the bashate output much cleaner which should make it easier for people to understand why it fails when it fails in check. Change-Id: I2249b76e33003b57a1d2ab5fcdb17eda4e5cd7ad
5 lines
187 B
Bash
Executable File
5 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ROOT=$(readlink -fn $(dirname $0)/.. )
|
|
find $ROOT -not -wholename \*.tox/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* \) -print0 | xargs -0 bashate -i E006 -v
|