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:
parent
1a83002c9d
commit
8cf856b35e
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user