From 477d35dad7d66e8ec57f5f6f9d0882a44596c149 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Thu, 11 Aug 2022 02:27:54 +0100 Subject: [PATCH] try to support jammy daily testing --- quickget | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/quickget b/quickget index dbe8f08..adfdd04 100755 --- a/quickget +++ b/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"