We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c5603 commit f3f8049Copy full SHA for f3f8049
lib/mix/lib/mix/tasks/deps.partition.ex
@@ -25,7 +25,7 @@ defmodule Mix.Tasks.Deps.Partition do
25
System.find_executable("elixir") ||
26
raise "cannot find elixir executable for partition compilation"
27
28
- {:ok, {ip, port}} = :inet.sockname(socket)
+ {:ok, {_ip, port}} = :inet.sockname(socket)
29
ansi_flag = if IO.ANSI.enabled?(), do: ~c"--color", else: ~c"--no-color"
30
force_flag = if force?, do: ~c"--force", else: ~c"--no-force"
31
@@ -63,7 +63,7 @@ defmodule Mix.Tasks.Deps.Partition do
63
~c"--port",
64
Integer.to_charlist(port),
65
~c"--host",
66
- :inet.ntoa(ip)
+ ~c"127.0.0.1"
67
]
68
69
options = [
0 commit comments