refactor: remove LC_ALL from releases_endeavouros()
LC_ALL is set globally at the top of quickget
This commit is contained in:
parent
0f970a46f8
commit
c8ea62e50a
2
quickget
2
quickget
|
@ -761,7 +761,7 @@ function releases_elementary() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function releases_endeavouros() {
|
function releases_endeavouros() {
|
||||||
local ENDEAVOUR_RELEASES="$(web_pipe "https://mirror.alpix.eu/endeavouros/iso/" | LC_ALL="en_US.UTF-8" sort -Mr | grep -o -P '(?<=<a href=").*(?=.iso">)' | grep -v 'x86_64' | cut -c 13- | head -n 5 | tr '\n' ' ')"
|
local ENDEAVOUR_RELEASES="$(web_pipe "https://mirror.alpix.eu/endeavouros/iso/" | sort -Mr | grep -o -P '(?<=<a href=").*(?=.iso">)' | grep -v 'x86_64' | cut -c 13- | head -n 5 | tr '\n' ' ')"
|
||||||
echo "${ENDEAVOUR_RELEASES,,}"
|
echo "${ENDEAVOUR_RELEASES,,}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue