From a2bc3f894baee3e797fc8496cdd10cc5cb1d9ff5 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Tue, 7 May 2024 00:24:04 +0100 Subject: [PATCH] fix(quickget): add daily-live to ubuntu-server --- quickget | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/quickget b/quickget index 01afcbaaf8..e9ab5e1216 100755 --- a/quickget +++ b/quickget @@ -1151,8 +1151,9 @@ function releases_ubuntu() { } function releases_ubuntu-server() { - local ALL_VERSIONS=($(IFS=$'\n' web_pipe http://releases.ubuntu.com/streams/v1/com.ubuntu.releases:ubuntu-server.json | jq -r '.products[] | select(.arch=="amd64") | .version' | sort -rV)) - echo "${ALL_VERSIONS[@]}" + local ALL_VERSIONS=() + ALL_VERSIONS=($(IFS=$'\n' web_pipe http://releases.ubuntu.com/streams/v1/com.ubuntu.releases:ubuntu-server.json | jq -r '.products[] | select(.arch=="amd64") | .version' | sort -rV)) + echo daily-live "${ALL_VERSIONS[@]}" } function releases_vanillaos() {