mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2025-01-01 13:00:56 +00:00
4 lines
87 B
Bash
4 lines
87 B
Bash
#!/bin/bash
|
|
for i in `koji list-tags \*-build`; do
|
|
koji regen-repo --nowait $i;
|
|
done
|