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 74f9a29 commit 5189b29Copy full SHA for 5189b29
lib/mix/lib/mix/compilers/elixir.ex
@@ -710,11 +710,15 @@ defmodule Mix.Compilers.Elixir do
710
{@manifest_vsn, modules, sources, local_exports} ->
711
{modules, sources, local_exports}
712
713
- # From v5 and later
+ # v8-v* (v1.11)
714
+ {vsn, modules, _sources, _local_exports} when is_integer(vsn) ->
715
+ purge_old_manifest(compile_path, modules)
716
+
717
+ # v5-v7 (v1.10)
718
{vsn, modules, _sources} when is_integer(vsn) ->
719
purge_old_manifest(compile_path, modules)
720
- # From v4 and before
721
+ # v1-v4
722
[vsn | data] when is_integer(vsn) ->
723
purge_old_manifest(compile_path, data)
724
0 commit comments