From bfbf180920a6d14c4581326420bd288da2259266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Palancher?= Date: Thu, 4 Dec 2025 20:49:49 +0100 Subject: [PATCH] fix: URL of openSUSE Leap 16.0 ISO URL The fallback else case doesn't work for OpenSUSE Leap 16. --- quickget | 3 +++ 1 file changed, 3 insertions(+) diff --git a/quickget b/quickget index 6063f22..2e9c5c2 100755 --- a/quickget +++ b/quickget @@ -2316,6 +2316,9 @@ function get_opensuse() { elif [ "${RELEASE}" == 15.0 ] || [ "${RELEASE}" == 15.1 ]; then ISO="openSUSE-Leap-${RELEASE}-DVD-x86_64.iso" URL="https://download.opensuse.org/distribution/leap/${RELEASE}/iso" + elif [ "${RELEASE}" == 16.0 ]; then + ISO="Leap-${RELEASE}-online-installer-x86_64.install.iso" + URL="https://download.opensuse.org/distribution/leap/${RELEASE}/offline" else ISO="openSUSE-Leap-${RELEASE}-DVD-x86_64-Current.iso" URL="https://download.opensuse.org/distribution/leap/${RELEASE}/iso"