Set LC_ALL to C in octojoom script #10

This commit sets the enviroment variable LC_ALL to 'C' in the octojoom script. This ensures the use of ASCII character set and standardizes behavior across different environments for consistency.
This commit is contained in:
Llewellyn van der Merwe 2024-06-01 15:17:05 +02:00
parent 1a83002c9d
commit 8cf856b35e
Signed by: Llewellyn
GPG Key ID: A9201372263741E7

View File

@ -223,6 +223,9 @@ if ! command -v docker-compose &>/dev/null; then
exit 1 exit 1
fi fi
fi fi
# Setting the LC_ALL with respect to language, regional settings, to use POSIX locale,
# so ASCII character set and standardizes behavior is used for consistent across different environments
export LC_ALL=C
# just clear the screen # just clear the screen
clear clear