Skip to content
Snippets Groups Projects
Commit 976bb9b0 authored by Jack Nagel's avatar Jack Nagel
Browse files

Print each line of --env output atomically

parent 529b060d
No related branches found
No related tags found
No related merge requests found
......@@ -36,12 +36,12 @@ module Homebrew
keys.each do |key|
value = env[key]
print "#{key}: #{value}"
s = "#{key}: #{value}"
case key
when "CC", "CXX", "LD"
print " => #{Pathname.new(value).realpath}" if File.symlink?(value)
s << " => #{Pathname.new(value).realpath}" if File.symlink?(value)
end
puts
puts s
end
end
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