Skip to content

Commit

Permalink
feat: add edubuntu support, fixes #711 closes #757
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed Oct 16, 2023
1 parent 05c7511 commit 85571a8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -606,6 +606,9 @@ function releases_ubuntu() {
local INTERIM_SUPPORT="23.04"

case "${OS}" in
edubuntu)
INTERIM_SUPPORT="${INTERIM_SUPPORT}"
;;
kubuntu|lubuntu|ubuntukylin|\
ubuntu-mate|ubuntustudio|xubuntu)
## after 14.04
Expand All @@ -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} \
Expand Down

0 comments on commit 85571a8

Please sign in to comment.