Skip to content

Commit 67a6d0d

Browse files
FelicianoTechlj3954
authored andcommitted
fix(quickget): arm64 support for Fedora editions
Maybe it was accurate in this past but the current Quickget release suggest that only Fedora Server has arm64 support. That's not the case. In fact checking the `releases.json` file that `quickget` already uses shows us that every edition other than Onyx supports arm64. This PR makes that change. The command ran to check this info was: ```bash curl -sL https://getfedora.org/releases.json | jq -r 'group_by(.variant)[] | "\(.[0].variant): \(map(.arch) | unique | join(", "))"' COSMIC-Atomic: aarch64, x86_64 Cloud: aarch64, ppc64le, s390x, x86_64 Container: aarch64, ppc64le, s390x, x86_64 Everything: aarch64, ppc64le, s390x, x86_64 IoT: aarch64, ppc64le, s390x, x86_64 KDE: aarch64, ppc64le, x86_64 Kinoite: aarch64, ppc64le, x86_64 Labs: aarch64, x86_64 Onyx: x86_64 Sericea: aarch64, x86_64 Server: aarch64, ppc64le, s390x, x86_64 Silverblue: aarch64, ppc64le, x86_64 Spins: aarch64, x86_64 Workstation: aarch64, ppc64le, x86_64
1 parent b986819 commit 67a6d0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quickget

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1227,8 +1227,8 @@ function arch_debian() {
12271227

12281228
function arch_fedora() {
12291229
case "${EDITION}" in
1230-
Server) echo "amd64 arm64";;
1231-
*) echo "amd64";;
1230+
Onyx) echo "amd64";;
1231+
*) echo "amd64 arm64";;
12321232
esac
12331233
}
12341234

0 commit comments

Comments
 (0)