From ec8073cd1effe4981460276c8bd440a12f715f10 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Mon, 29 Apr 2024 00:58:35 +0100 Subject: [PATCH] Revert "refactor: remove LC_ALL from releases_endeavouros()" This reverts commit 22ebf5ba1cfe022386b4ef2dfb21c69cd0901a0f. --- quickget | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickget b/quickget index a787936..4018e1e 100755 --- a/quickget +++ b/quickget @@ -730,7 +730,7 @@ function releases_elementary() { } function releases_endeavouros() { - 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' ' ')" + 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' ' ')" echo "${ENDEAVOUR_RELEASES,,}" }