[UBUNTU]: Add canary release to test the new installer

* Add `canary` as supported Ubuntu release

Signed-off-by: Dani Llewellyn <diddledani@ubuntu.com>
This commit is contained in:
Dani Llewellyn 2021-10-21 18:46:02 +01:00 committed by Martin Wimpress
parent 8bb9003f5a
commit d62d739e8a
1 changed files with 8 additions and 1 deletions

View File

@ -177,7 +177,8 @@ function releases_ubuntu() {
focal \
hirsute \
impish \
devel
devel \
canary
}
function languages_windows() {
@ -781,6 +782,12 @@ function get_ubuntu() {
esac
validate_release "releases_ubuntu"
if [ "${RELEASE}" == "canary" ]; then
RELEASE="devel"
DEVEL="daily-canary"
fi
if [ "${RELEASE}" == "devel" ]; then
URL="http://cdimage.ubuntu.com/${PROJECT}/${DEVEL}/current"
elif [ "${PROJECT}" == "ubuntu" ]; then