diff options
author | 2025-01-17 20:04:28 +0100 | |
---|---|---|
committer | 2025-01-17 20:04:28 +0100 | |
commit | 9300c0e8c19352da49c99b07b3d8086d1403e331 (patch) | |
tree | 46f3f58edd81a6465b1f25088dad07a542ff3a89 | |
parent | f104b3c3064571df3f90351633390ff37e90b443 (diff) | |
download | zuwu-9300c0e8c19352da49c99b07b3d8086d1403e331.tar.gz zuwu-9300c0e8c19352da49c99b07b3d8086d1403e331.tar.bz2 zuwu-9300c0e8c19352da49c99b07b3d8086d1403e331.tar.lz zuwu-9300c0e8c19352da49c99b07b3d8086d1403e331.zip |
fix: !=
-rw-r--r-- | env.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |