Skip to content

Commit 9d62931

Browse files
committed
Fix trying to mutate frozen string in tool/docker.rb
1 parent 260d07b commit 9d62931

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool/docker.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def docker(*args)
259259

260260
%w[:command_line :security :language :core :tracepoint :library :capi :library_cext :truffle :truffle_capi].each do |set|
261261
t_config = c.empty? ? '' : '-T' + c
262-
t_config << ' -T--experimental-options -T--pattern-matching'
262+
t_config += ' -T--experimental-options -T--pattern-matching'
263263
t_excludes = excludes.map { |e| '--excl-tag ' + e }.join(' ')
264264
lines << "RUN ruby spec/mspec/bin/mspec -t #{ruby_bin}/ruby #{t_config} #{t_excludes} #{set}"
265265
end

0 commit comments

Comments
 (0)