mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
try to support jammy daily testing
This commit is contained in:
parent
0a7a38b915
commit
477d35dad7
1 changed files with 5 additions and 0 deletions
5
quickget
5
quickget
|
@ -491,6 +491,7 @@ function releases_ubuntu() {
|
|||
;;
|
||||
esac
|
||||
echo ${LTS_SUPPORT} \
|
||||
jammy-daily \
|
||||
daily-live \
|
||||
daily-canary \
|
||||
eol-4.10 \
|
||||
|
@ -1410,6 +1411,10 @@ function get_ubuntu() {
|
|||
|
||||
if [[ "${RELEASE}" == "eol-"* ]]; then
|
||||
URL="https://old-releases.ubuntu.com/releases/${RELEASE/eol-/}"
|
||||
elif [[ "${RELEASE}" == "jammy-daily" ]]; then
|
||||
URL="https://cdimage.ubuntu.com/${OS}/jammy/daily-live/current"
|
||||
VM_PATH="${OS}-jammy-live"
|
||||
|
||||
elif [[ "${RELEASE}" == *"daily"* ]] || [ "${RELEASE}" == "dvd" ]; then
|
||||
URL="https://cdimage.ubuntu.com/${OS}/${RELEASE}/current"
|
||||
VM_PATH="${OS}-daily-live"
|
||||
|
|
Loading…
Reference in a new issue