Skip to content

Commit

Permalink
Set the LANG env property for all processes
Browse files Browse the repository at this point in the history
- for sure.
- for now I am not changing the time zone as it seems it doesn't affect tests

Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed Sep 22, 2022
1 parent 8979784 commit ca995a8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ private Process startBash(final String command) throws IOException {

private void configureEnvironment(Map<String, String> env) {
env.put("LC_ALL", "en_US.UTF-8");
env.put("LANG", "en");
env.put("WORKSPACE", cfg.getTargetDir().getAbsolutePath());
env.put("JAVA_HOME", cfg.getJdkDirectory().getAbsolutePath());
env.put("JDK17_HOME", cfg.getJdkDirectory().getAbsolutePath());
Expand Down

0 comments on commit ca995a8

Please sign in to comment.