
These were copied from the upstream checks: https://git.openstack.org/cgit/openstack-infra/project-config/tree/ layout-checks.py was modified to skip check_merge_template()
5 lines
211 B
Bash
Executable File
5 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ROOT=$(readlink -fn $(dirname $0)/.. )
|
|
find $ROOT -not -wholename \*.tox/\* -and -not -wholename \*.test/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* \) -print0 | xargs -0 bashate -v
|