File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed
Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,13 @@ defmodule Mix.Tasks.Clean do
6565
6666 # Loadpaths without checks because compilers may be defined in deps.
6767 defp loadpaths! do
68- options = [ "--no-elixir-version-check" , "--no-deps-check" , "--no-archives-check" ]
68+ options = [
69+ "--no-elixir-version-check" ,
70+ "--no-deps-check" ,
71+ "--no-archives-check" ,
72+ "--no-listeners"
73+ ]
74+
6975 Mix.Task . run ( "loadpaths" , options )
7076 Mix.Task . reenable ( "loadpaths" )
7177 Mix.Task . reenable ( "deps.loadpaths" )
Original file line number Diff line number Diff line change @@ -86,7 +86,13 @@ defmodule Mix.Tasks.Compile do
8686 @ impl true
8787 def run ( [ "--list" ] ) do
8888 # Loadpaths without checks because compilers may be defined in deps.
89- args = [ "--no-elixir-version-check" , "--no-deps-check" , "--no-archives-check" ]
89+ args = [
90+ "--no-elixir-version-check" ,
91+ "--no-deps-check" ,
92+ "--no-archives-check" ,
93+ "--no-listeners"
94+ ]
95+
9096 Mix.Task . run ( "loadpaths" , args )
9197 Mix.Task . reenable ( "loadpaths" )
9298 Mix.Task . reenable ( "deps.loadpaths" )
Original file line number Diff line number Diff line change @@ -119,7 +119,13 @@ defmodule Mix.Tasks.Help do
119119
120120 # Loadpaths without checks because tasks may be defined in deps.
121121 defp loadpaths! do
122- args = [ "--no-elixir-version-check" , "--no-deps-check" , "--no-archives-check" ]
122+ args = [
123+ "--no-elixir-version-check" ,
124+ "--no-deps-check" ,
125+ "--no-archives-check" ,
126+ "--no-listeners"
127+ ]
128+
123129 Mix.Task . run ( "loadpaths" , args )
124130 Mix.Task . reenable ( "loadpaths" )
125131 Mix.Task . reenable ( "deps.loadpaths" )
You can’t perform that action at this time.
0 commit comments