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
106
106
stacktrace = System . stacktrace
107
107
app = dep . app
108
108
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 } \" "
111
111
:erlang . raise ( kind , reason , stacktrace )
112
112
end
113
113
end
@@ -159,7 +159,8 @@ defmodule Mix.Tasks.Deps.Compile do
159
159
env = [ { "ERL_LIBS" , Path . join ( config [ :build_path ] , "lib" ) } ]
160
160
if Mix . shell . cmd ( "#{ command } #{ extra } " , print_app: print_app? , env: env ) != 0 do
161
161
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 } \" "
163
164
end
164
165
end
165
166
true
You can’t perform that action at this time.
0 commit comments