From c81808ee262a7323625a8834008bd680066ee0b7 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Sun, 3 Apr 2022 01:40:07 +0300 Subject: [PATCH] deb-update.bash: actually use LC_ALL and note it being poor practice --- bash/deb-update.bash | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bash/deb-update.bash b/bash/deb-update.bash index f77aaf1..cd96284 100755 --- a/bash/deb-update.bash +++ b/bash/deb-update.bash @@ -8,7 +8,9 @@ set -x # English (US) is generally installed everywhere, flatpak and packagekit use # weird glyphs unavailable in C and C.utf8 is a RedHattism, which Debian # side of the family doesn't recognise. -export LANG=en_US.utf8 +#export LANG=en_US.utf8 +# This is said to be a poor practice that should only be used for debugging +export LC_ALL=en_US.utf8 # if hash checks that the command exists if hash apt-get 2>/dev/null; then