File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ defmodule Mix.Tasks.Deps.Compile do
106106 stacktrace = System . stacktrace
107107 app = dep . app
108108 Mix . shell . error "could not compile dependency #{ inspect app } , \" mix compile\" failed. " <>
109- "You can recompile this dependency with \" mix deps.compile #{ app } \" or " <>
110- "update it with \" mix deps.update #{ app } \" "
109+ "You can recompile this dependency with \" mix deps.compile #{ app } \" , update it " <>
110+ "with \" mix deps. update #{ app } \" or clean it with \" mix deps.clean #{ app } \" "
111111 :erlang . raise ( kind , reason , stacktrace )
112112 end
113113 end
@@ -159,7 +159,8 @@ defmodule Mix.Tasks.Deps.Compile do
159159 env = [ { "ERL_LIBS" , Path . join ( config [ :build_path ] , "lib" ) } ]
160160 if Mix . shell . cmd ( "#{ command } #{ extra } " , print_app: print_app? , env: env ) != 0 do
161161 Mix . raise "Could not compile dependency #{ inspect app } , \" #{ command } \" command failed. " <>
162- "If you want to recompile this dependency, please run: \" mix deps.compile #{ app } \" "
162+ "You can recompile this dependency with \" mix deps.compile #{ app } \" , update it " <>
163+ "with \" mix deps.update #{ app } \" or clean it with \" mix deps.clean #{ app } \" "
163164 end
164165 end
165166 true
You can’t perform that action at this time.
0 commit comments