From 22ebf5ba1cfe022386b4ef2dfb21c69cd0901a0f Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sun, 28 Apr 2024 03:06:38 +0100 Subject: [PATCH] refactor: remove LC_ALL from releases_endeavouros() LC_ALL is set globally at the top of quickget --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index 4459e12..82aec9b 100755 --- a/quickget +++ b/quickget @@ -761,7 +761,7 @@ function releases_elementary() { } 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 '(?<=)' | 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 '(?<=)' | grep -v 'x86_64' | cut -c 13- | head -n 5 | tr '\n' ' ')" echo "${ENDEAVOUR_RELEASES,,}" }