Skip to content

Commit

Permalink
Set the locale with elixir
Browse files Browse the repository at this point in the history
(cherry picked from commit ba8cf2c)
  • Loading branch information
HoloRin authored and mergify[bot] committed Jun 19, 2024
1 parent 04d6dc4 commit 1d11854
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion deps/rabbitmq_cli/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ elixir_bytecode(
"MIX_ENV": "prod",
"DEPS_DIR": "$ERL_LIBS",
"ERL_COMPILER_OPTIONS": "deterministic",
"LANG": "en_US.UTF-8",
"LC_ALL": "en_US.UTF-8",
},
ez_deps = [
":csv.ez",
Expand Down Expand Up @@ -175,7 +177,8 @@ elixir_escript_main(
app = ":erlang_app",
env = {
"HOME": '"$(mktemp -d)"',
"ELIXIR_ERL_OPTIONS": "+fnu",
"LANG": "en_US.UTF-8",
"LC_ALL": "en_US.UTF-8",
},
main_module = "RabbitMQCtl",
mix_config = "config/config.exs",
Expand Down Expand Up @@ -321,6 +324,8 @@ ex_unit_test(
"MIX_ENV": "prod",
"DEPS_DIR": "$ERL_LIBS",
"ERL_COMPILER_OPTIONS": "deterministic",
"LANG": "en_US.UTF-8",
"LC_ALL": "en_US.UTF-8",
},
ez_deps = [
":amqp.ez",
Expand Down

0 comments on commit 1d11854

Please sign in to comment.