aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/--env.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/--env.rb b/Library/Homebrew/cmd/--env.rb
index 45af51391..28bdb4f3d 100644
--- a/Library/Homebrew/cmd/--env.rb
+++ b/Library/Homebrew/cmd/--env.rb
@@ -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