b544a361ef
Like pep8 before we are trying to reduce the amount of jobs launched in the check / gate pipelines. Over the last 200 commits only 2 or 3 files have been touched. We are also reducing run-bashate.sh and remove unsourced files. Change-Id: Ie77fad9a272fb41fbb48f94ceee910954e903939 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
5 lines
168 B
Bash
Executable File
5 lines
168 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
|