mirror of
https://github.com/rocky-linux/ansible-role-kojihub.git
synced 2024-12-28 19:20:55 +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
|