Skip to content

Commit bbaf6b4

Browse files
author
Yuki Ito
committed
Add space to error message in mix
1 parent 99cdb41 commit bbaf6b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mix/lib/mix/tasks/deps.compile.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ defmodule Mix.Tasks.Deps.Compile do
122122

123123
defp do_compile(app, command) when is_binary(command) do
124124
if Mix.shell.cmd(command) != 0 do
125-
raise Mix.Error, message: "could not compile dependency #{app}, custom #{command} command failed." <>
125+
raise Mix.Error, message: "could not compile dependency #{app}, custom #{command} command failed. " <>
126126
"In case you want to recompile this dependency, please run: mix deps.compile #{app}"
127127
end
128128
end

0 commit comments

Comments
 (0)