mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
[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:
parent
8bb9003f5a
commit
d62d739e8a
1 changed files with 8 additions and 1 deletions
9
quickget
9
quickget
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue