Add erlang binaries to the path in rabbitmq-run.sh
As they are no longer added automatically by the enclosing rule
This commit is contained in:
parent
5debebfaf3
commit
35171ebdeb
|
@ -175,6 +175,7 @@ elixir_escript_main(
|
|||
app = ":erlang_app",
|
||||
env = {
|
||||
"HOME": '"$(mktemp -d)"',
|
||||
"ELIXIR_ERL_OPTIONS": "+fnu",
|
||||
},
|
||||
main_module = "RabbitMQCtl",
|
||||
mix_config = "config/config.exs",
|
||||
|
|
|
@ -4,6 +4,8 @@ set -euo pipefail
|
|||
GREEN='\033[0;32m'
|
||||
NO_COLOR='\033[0m'
|
||||
|
||||
export PATH="{ERLANG_HOME}/bin:$PATH"
|
||||
|
||||
rmq_realpath() {
|
||||
local path=$1
|
||||
|
||||
|
|
Loading…
Reference in New Issue