mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-11-01 02:51:23 +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
|