File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ defmodule Mix.Deps do
110
110
def in_dependency ( Mix.Dep [ opts : opts ] , post_config , fun ) do
111
111
# Use post_config for rebar deps
112
112
Mix.Project . post_config ( post_config )
113
- Mix.Project . push ( Mix.Rebar.Mixproject )
113
+ Mix.Project . push ( Mix.Rebar )
114
114
try do
115
115
File . cd! ( opts [ :dest ] , fn -> fun . ( nil ) end )
116
116
after
Original file line number Diff line number Diff line change 1
1
defmodule Mix.Rebar do
2
2
@ moduledoc false
3
3
4
+ @ doc false
5
+ def project , do: [ ]
6
+
4
7
@ doc """
5
8
Loads the rebar.config and evaluates rebar.config.script if it exists in the
6
9
given directory.
@@ -114,11 +117,3 @@ defmodule Mix.Rebar do
114
117
end )
115
118
end
116
119
end
117
-
118
- # Used when pushing a rebar dependency to the project stack
119
- defmodule Mix.Rebar.Mixproject do
120
- @ moduledoc false
121
-
122
- @ doc false
123
- def project , do: [ ]
124
- end
You can’t perform that action at this time.
0 commit comments