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