diff --git a/tools/run_bashate.sh b/tools/run_bashate.sh index e8dab51..93ab45b 100755 --- a/tools/run_bashate.sh +++ b/tools/run_bashate.sh @@ -1,3 +1,7 @@ #!/bin/bash -xe -find ./ -not -wholename \*.tox/\* -and \( -name \*.sh -or -wholename \*.d/\* -and -not -name \*.md -and -not -name \*.rst -and -not -name \*.py \) -print0 | xargs -0 bashate -v +find ./ -not -wholename \*.tox/\* -and \ + \( -name \*.sh -or -wholename \*.d/\* -and \ + -not -name \*.md -and -not -name \*.rst -and \ + -not -name \*.py -and -not -name \*.conf \) \ + -print0 | xargs -0 bashate -v