7 lines
131 B
Bash
Executable file
7 lines
131 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")/.." || exit 1
|
|
|
|
find . -name site.yml -print0 | xargs -0 -t -n 1 ansible-lint -x 701 -qs --
|