Fix bad mutable call on a frozen string.
This commit is contained in:
parent
2aefcb37c4
commit
2f21de596f
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user