From 3665309a88ab3f4a8dfa90059be1199b1a9da389 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 16 Oct 2023 12:23:02 +0100 Subject: [PATCH] feat: add edubuntu support, fixes #711 closes #757 --- quickget | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index 2bf66e1682..16b44aae3c 100755 --- a/quickget +++ b/quickget @@ -606,6 +606,9 @@ function releases_ubuntu() { local INTERIM_SUPPORT="23.04 23.10" case "${OS}" in + edubuntu) + INTERIM_SUPPORT="${INTERIM_SUPPORT}" + ;; kubuntu|lubuntu|ubuntukylin|\ ubuntu-mate|ubuntustudio|xubuntu) ## after 14.04 @@ -624,12 +627,11 @@ function releases_ubuntu() { esac - if [ "${OS}" == "ubuntu-unity" ] || [ "${OS}" == "ubuntucinnamon" ]; then + if [ "${OS}" == "edubuntu" ] || [ "${OS}" == "ubuntu-unity" ] || [ "${OS}" == "ubuntucinnamon" ]; then echo ${INTERIM_SUPPORT} \ daily-live \ daily-canary \ ; - else echo ${LTS_SUPPORT} \ ${INTERIM_SUPPORT} \