Skip to content
Snippets Groups Projects
Commit 9104fdba authored by Adam Vandenberg's avatar Adam Vandenberg
Browse files

Fix reporting of build errors.

parent 80f98a1a
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ class BuildError < Homebrew::InstallationError
@command = cmd
@env = ENV.to_hash
@exit_status = es.exitstatus rescue 1
args = args.map{ |arg| arg.gsub " ", "\\ " }.join(" ")
args = args.map{ |arg| arg.to_s.gsub " ", "\\ " }.join(" ")
super formula, "Failed executing: #{command} #{args}"
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment