From 9300c0e8c19352da49c99b07b3d8086d1403e331 Mon Sep 17 00:00:00 2001 From: memdmp Date: Fri, 17 Jan 2025 20:04:28 +0100 Subject: fix: != --- env.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'env.zsh') diff --git a/env.zsh b/env.zsh index 2956f63..d3d2283 100644 --- a/env.zsh +++ b/env.zsh @@ -14,7 +14,7 @@ if [[ "$VALIDATE_LANG" != "false" ]]; then if [[ "$LANG" == "" ]] || [[ "$LANG" == "C" ]]; then # Modern systems will have UTF-8 everywhere outside of a TTY. # Login Shells are the only shell likely to be a TTY (although theoretically other shells could also be login shells, but like idc if 1% of thigns break). - if [[ "$-" == *l* ]]; then + if [[ "$-" != *l* ]]; then export LANG="C.UTF-8" else export LANG="C" -- cgit v1.2.3