Skip to content

Commit

Permalink
chore: LANG=en_US.UTF-8
Browse files Browse the repository at this point in the history
  • Loading branch information
hstyi committed Jan 24, 2025
1 parent f385f4b commit 86ccb5e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/kotlin/app/termora/PtyConnectorFactory.kt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ class PtyConnectorFactory : Disposable {
val locale = Locale.getDefault()
if (StringUtils.isNoneBlank(locale.language, locale.country)) {
envs["LANG"] = "${locale.language}_${locale.country}.${Charset.defaultCharset().name()}"
} else {
envs["LANG"] = "en_US.UTF-8"
}
}
}
Expand Down

0 comments on commit 86ccb5e

Please sign in to comment.