Skip to content

Commit

Permalink
fix(quickget): add daily-live to ubuntu-server
Browse files Browse the repository at this point in the history
  • Loading branch information
flexiondotorg committed May 6, 2024
1 parent bad6ad7 commit a2bc3f8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit a2bc3f8

Please sign in to comment.