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 cf34fcc commit 05855afCopy full SHA for 05855af
lib/mix/lib/mix/tasks/deps.partition.ex
@@ -72,7 +72,12 @@ defmodule Mix.Tasks.Deps.Partition do
72
:use_stdio,
73
:stderr_to_stdout,
74
line: 1_000_000,
75
- env: [{~c"MIX_OS_CONCURRENCY_LOCK", ~c"false"} | env_vars]
+ env: [
76
+ {~c"MIX_OS_CONCURRENCY_LOCK", ~c"false"},
77
+ {~c"MIX_ENV", Atom.to_charlist(Mix.env())},
78
+ {~c"MIX_TARGET", Atom.to_charlist(Mix.target())}
79
+ | env_vars
80
+ ]
81
]
82
83
ports =
0 commit comments