mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2025-01-07 15:18:43 +00:00
5 lines
192 B
Bash
5 lines
192 B
Bash
#!/usr/bin/env bash
|
|
cd ../../
|
|
while read -r line; do
|
|
find plugins -name "*.py" ! -path "plugins/module_utils/*" | xargs -I {} -n 1 printf "{} $line\n"
|
|
done <"tests/sanity/ignore.template"
|