Skip to content

Commit 53b7e55

Browse files
committed
Print a project is recompiled when elixir, otp, or scm changed and MIX_DEBUG is set, closes #14325
1 parent bfb6cdb commit 53b7e55

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/mix/lib/mix/tasks/loadpaths.ex

+6
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ defmodule Mix.Tasks.Loadpaths do
5858
# to dependencies and the main project alike.
5959
case Mix.Dep.ElixirSCM.read() do
6060
{:ok, old_vsn, old_scm} when old_vsn != vsn or old_scm != scm ->
61+
if Mix.debug?() do
62+
Mix.shell().info(
63+
"-- Recompiling #{inspect(config[:app])} because Erlang/OTP, Elixir, or SCM version changed"
64+
)
65+
end
66+
6167
File.rm_rf(Mix.Project.app_path(config))
6268
File.rm_rf(Mix.Project.consolidation_path(config))
6369

0 commit comments

Comments
 (0)