mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2025-01-09 16:18:42 +00:00
6 lines
167 B
Bash
6 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"
|