We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6440fb9 commit caf3925Copy full SHA for caf3925
1 file changed
lib/mix/lib/mix/project.ex
@@ -768,12 +768,12 @@ defmodule Mix.Project do
768
@spec build_path(keyword) :: Path.t()
769
def build_path(config \\ config()) do
770
cond do
771
- build_path = System.get_env("MIX_BUILD_PATH") ->
772
- Path.expand(build_path)
773
-
774
deps_build_path = config[:deps_build_path] ->
775
deps_build_path
776
+ build_path = System.get_env("MIX_BUILD_PATH") ->
+ Path.expand(build_path)
+
777
true ->
778
do_build_path(config)
779
end
0 commit comments