kolla-mesos/tools/run-bashate.sh
Michal Rostecki dcf47398c1 Create a bashate script
Run bashate in script instead of the large command written
directly in tox.ini.

TrivialFix

Change-Id: I688d5c2a9361d4a70757c9ef6c3a13eac2321149
2016-01-19 07:00:06 +01:00

8 lines
239 B
Bash
Executable File

#!/bin/bash
# Ignore E006 -- line length greater than 80 char
ROOT=$(readlink -fn $(dirname $0)/.. )
find $ROOT -not -wholename \*.tox/\* -and -not -wholename \*.test/\* \
-and -name \*.sh -print0 | xargs -0 bashate -v --ignore E006