From e9018c0aaf76e22f419989e4729d44f62df59253 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 29 Apr 2024 01:25:57 +0100 Subject: [PATCH] refactor: drop superfluous sort from editions_fedora() --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 4018e1e..e287502 100755 --- a/quickget +++ b/quickget @@ -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(){