Skip to content

Commit

Permalink
remove sed from arcolinux
Browse files Browse the repository at this point in the history
  • Loading branch information
philclifford committed Apr 19, 2024
1 parent 9665a11 commit 70e7284
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 @@ -800,7 +800,7 @@ function releases_archlinux() {

function releases_arcolinux() {
local RLIST
RLIST=$(curl -s https://ant.seedhost.eu/arcolinux/iso/ | grep -o -E ">v[[:digit:]]{2}.[[:digit:]]{2}.[[:digit:]]{2}" | sed -e "s/>//" | tr '\r\n' ' ')
RLIST=$(curl -s https://ant.seedhost.eu/arcolinux/iso/ | grep -o -E "v[[:digit:]]{2}.[[:digit:]]{2}.[[:digit:]]{2}" | sort -ur | tr '\r\n' ' ')
echo ${RLIST}
}

Expand Down

0 comments on commit 70e7284

Please sign in to comment.