refactor: drop superfluous sort from editions_fedora()

This commit is contained in:
Martin Wimpress 2024-04-29 01:25:57 +01:00 committed by Martin Wimpress
parent ec8073cd1e
commit e9018c0aaf
1 changed files with 1 additions and 1 deletions

View File

@ -747,7 +747,7 @@ function releases_fedora() {
}
function editions_fedora() {
echo $(web_pipe "https://getfedora.org/releases.json" | jq -r 'map(select(.arch=="x86_64" and .variant!="Labs" and .variant!="IoT" and .variant!="Container" and .variant!="Cloud" and .variant!="Everything" and .subvariant!="Security" and .subvariant!="Server_KVM" and .subvariant!="SoaS")) | map(.subvariant) | unique | .[]' | sort)
echo $(web_pipe "https://getfedora.org/releases.json" | jq -r 'map(select(.arch=="x86_64" and .variant!="Labs" and .variant!="IoT" and .variant!="Container" and .variant!="Cloud" and .variant!="Everything" and .subvariant!="Security" and .subvariant!="Server_KVM" and .subvariant!="SoaS")) | map(.subvariant) | unique | .[]')
}
function releases_freebsd(){