Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[quickget] added version 22.10 in releases_ubuntu #570

Merged
merged 1 commit into from Oct 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions quickget
Expand Up @@ -478,6 +478,8 @@ function releases_tails() {

function releases_ubuntu() {
local LTS_SUPPORT="14.04 16.04 18.04 20.04 22.04"
local INTERIM_SUPPORT="22.10"

case "${OS}" in
kubuntu|lubuntu|ubuntukylin|\
ubuntu-mate|ubuntustudio|xubuntu)
Expand All @@ -489,7 +491,11 @@ function releases_ubuntu() {
LTS_SUPPORT="${LTS_SUPPORT/14.04 16.04 /}"
;;
esac

INTERIM_SUPPORT="${INTERIM_SUPPORT/22.10 /}"

echo ${LTS_SUPPORT} \
${INTERIM_SUPPORT} \
jammy-daily \
daily-live \
daily-canary \
Expand Down Expand Up @@ -529,6 +535,7 @@ function releases_ubuntu() {
eol-21.04 \
eol-21.10 \
;

}

function releases_void() {
Expand Down Expand Up @@ -2015,6 +2022,7 @@ else
echo -n " - Releases: "
releases_ubuntu | sed -Ee 's/eol-\S+//g' # hide eol releases
;;

*)
echo -n " - Releases: "
releases_"${OS}"
Expand Down