mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Prevent a warning: literal string will be frozen in the future
This commit is contained in:
parent
d910d64ed9
commit
295f2a3305
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ if File.exist?(depend = File.join($srcdir, "depend"))
|
|||
erb = ERB.new(File.read(depend), trim_mode: '%')
|
||||
erb.filename = depend
|
||||
tmp = erb.result(binding)
|
||||
dep = "\n#### depend ####\n\n" << depend_rules(tmp).join
|
||||
dep = "\n#### depend ####\n\n" + depend_rules(tmp).join
|
||||
else
|
||||
dep = ""
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue