Files
ansible-freeipa/utils/gen_modules_docs.sh
Thomas Woerner 0cfc9d0147 utils/gen_modules_docs.sh: Fix covscan findings
error[SC2148]: Tips depend on target shell and yours is unknown.
  Add a shebang.
2020-12-09 16:02:08 +01:00

6 lines
88 B
Bash

#!/bin/bash
for i in roles/ipa*/*/*.py; do
python utils/gen_module_docs.py $i
done