mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-10-31 18:51:22 +00:00
5 lines
87 B
Bash
5 lines
87 B
Bash
#!/bin/bash
|
|
for i in `koji list-tags \*-build`; do
|
|
koji regen-repo --nowait $i;
|
|
done
|