aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorXu Cheng2016-07-13 15:18:02 +0800
committerXu Cheng2016-07-13 15:18:44 +0800
commit99e9a22b851c027f286247ad37fb81d468c201e7 (patch)
tree1d1980842bdd9d8329017d2a972d5c26fa20ff07 /Library
parent706b06942f2ccedc1adfdea98d9306c22525eca3 (diff)
downloadbrew-99e9a22b851c027f286247ad37fb81d468c201e7.tar.bz2
describe_homebrew_ruby: s may be a frozen string
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/os/mac/system_config.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/os/mac/system_config.rb b/Library/Homebrew/extend/os/mac/system_config.rb
index 4c9ca552b..d3b362aac 100644
--- a/Library/Homebrew/extend/os/mac/system_config.rb
+++ b/Library/Homebrew/extend/os/mac/system_config.rb
@@ -32,7 +32,7 @@ class SystemConfig
s = describe_homebrew_ruby_version
if RUBY_PATH.to_s !~ %r{^/System/Library/Frameworks/Ruby.framework/Versions/[12]\.[089]/usr/bin/ruby}
- s << " => #{RUBY_PATH}"
+ s = "#{s} => #{RUBY_PATH}"
end
s
end