Tidy flavour lts (#401)/ Closes #402

Filter ubuntu flavour LTS availability
pull/418/head
Phil Clifford 3 years ago committed by GitHub
parent 9725cb186f
commit a6073dfd5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      quickget

@ -442,10 +442,19 @@ function releases_tails() {
} }
function releases_ubuntu() { function releases_ubuntu() {
echo 14.04 \ local LTS_SUPPORT="14.04 16.04 18.04 20.04"
16.04 \ case "${OS}" in
18.04 \ kubuntu|lubuntu|ubuntukylin|\
20.04 \ ubuntu-mate|ubuntustudio|xubuntu)
## after 14.04
LTS_SUPPORT="${LTS_SUPPORT/14.04 /}"
;;
ubuntu-budgie)
#after 16.04
LTS_SUPPORT="${LTS_SUPPORT/14.04 16.04 /}"
;;
esac
echo ${LTS_SUPPORT} \
21.10 \ 21.10 \
daily-live \ daily-live \
daily-canary \ daily-canary \

Loading…
Cancel
Save