Fix bad mutable call on a frozen string.

This commit is contained in:
Kevin Menard 2019-04-30 13:12:27 -04:00
parent 2aefcb37c4
commit 2f21de596f

View File

@ -59,7 +59,7 @@ module Homebrew
s = "#{key}: #{value}" s = "#{key}: #{value}"
case key case key
when "CC", "CXX", "LD" when "CC", "CXX", "LD"
s << " => #{Pathname.new(value).realpath}" if File.symlink?(value) s += " => #{Pathname.new(value).realpath}" if File.symlink?(value)
end end
f.puts s f.puts s
end end