Skip to content

Commit

Permalink
Fix vm.args.eex generated file when remote? is false (elixir-lang#1…
Browse files Browse the repository at this point in the history
…3688)

before
```
-start_epmd false -erl_epmd_port 6789false
```

after
```
-start_epmd false -erl_epmd_port 6789
```
  • Loading branch information
tank-bohr authored Jun 24, 2024
1 parent 8745b9e commit 1b604f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mix/lib/mix/tasks/release.init.ex
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ defmodule Mix.Tasks.Release.Init do
## Enable deployment without epmd
## (requires changing both vm.args and remote.vm.args)
##-start_epmd false -erl_epmd_port 6789#{remote? && " -dist_listen false"}
##-start_epmd false -erl_epmd_port 6789#{if(remote?, do: " -dist_listen false")}
"""

@doc false
Expand Down

0 comments on commit 1b604f5

Please sign in to comment.