mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Filter ubuntu flavour LTS availability
This commit is contained in:
parent
9725cb186f
commit
a6073dfd5b
1 changed files with 13 additions and 4 deletions
17
quickget
17
quickget
|
@ -442,10 +442,19 @@ function releases_tails() {
|
|||
}
|
||||
|
||||
function releases_ubuntu() {
|
||||
echo 14.04 \
|
||||
16.04 \
|
||||
18.04 \
|
||||
20.04 \
|
||||
local LTS_SUPPORT="14.04 16.04 18.04 20.04"
|
||||
case "${OS}" in
|
||||
kubuntu|lubuntu|ubuntukylin|\
|
||||
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 \
|
||||
daily-live \
|
||||
daily-canary \
|
||||
|
|
Loading…
Reference in a new issue