Skip to content

Commit

Permalink
feat: remove unneeded sed from arcolinux url discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
philclifford authored and flexiondotorg committed May 14, 2024
1 parent 542fcbe commit 4547064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickget
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ function releases_archlinux() {

function releases_arcolinux() {
#shellcheck disable=SC2046,SC2005
echo $(web_pipe "https://mirror.accum.se/mirror/arcolinux.info/iso/" | grep -o -E ">v[[:digit:]]{2}.[[:digit:]]{2}.[[:digit:]]{2}" | sed -e "s/>//" | sort -r | head -n 5)
echo $(web_pipe "https://mirror.accum.se/mirror/arcolinux.info/iso/" | grep -o -E "v[[:digit:]]{2}.[[:digit:]]{2}.[[:digit:]]{2}" | sort -ru | head -n 5)
}

function editions_arcolinux() {
Expand Down

0 comments on commit 4547064

Please sign in to comment.