You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
392 B
9 lines
392 B
# Common code shared between build.sh and update.sh
|
|
|
|
# Prints the list of currently maintained Fedora versions (e.g. "42 43 44"),
|
|
# based on the Bodhi releases API.
|
|
get_fedora_versions () {
|
|
curl -fsSL "https://bodhi.fedoraproject.org/releases/?exclude_archived=true&state=current" \
|
|
| jq -r '.releases[] | select(.id_prefix=="FEDORA") | .version' \
|
|
| grep -E '^[0-9]+$' | sort -n
|
|
}
|
|
|