File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -663,9 +663,10 @@ defmodule Mix do
663
663
664
664
config = Keyword . get ( opts , :config , [ ] )
665
665
system_env = Keyword . get ( opts , :system_env , [ ] )
666
+ consolidate_protocols? = Keyword . get ( opts , :consolidate_protocols , true )
666
667
667
668
id =
668
- { deps , config , system_env }
669
+ { deps , config , system_env , consolidate_protocols? }
669
670
|> :erlang . term_to_binary ( )
670
671
|> :erlang . md5 ( )
671
672
|> Base . encode16 ( case: :lower )
@@ -703,7 +704,7 @@ defmodule Mix do
703
704
erlc_paths: [ "src" ] ,
704
705
elixirc_paths: [ "lib" ] ,
705
706
compilers: [ ] ,
706
- consolidate_protocols: Keyword . get ( opts , : consolidate_protocols, true )
707
+ consolidate_protocols: consolidate_protocols?
707
708
]
708
709
709
710
started_apps = Application . started_applications ( )
You can’t perform that action at this time.
0 commit comments