summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-15 18:40:58 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-15 18:40:58 +0000
commit3e895a046cda712297e2d4d3b3e977bf65851784 (patch)
tree311750f33423a9717d07e918584caadb4b2b1e85 /tool
parent27635014e1284756d7a56479d65b6159ebb8eeb3 (diff)
merge revision(s) 50985: [Backport #11693]
runruby.rb: don't close other fds * tool/runruby.rb: rubyspec now requires other FDs not to be closed since 7b6ce1fee. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@52580 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-xtool/runruby.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/tool/runruby.rb b/tool/runruby.rb
index 86b9327350..80ad66a497 100755
--- a/tool/runruby.rb
+++ b/tool/runruby.rb
@@ -89,6 +89,7 @@ ENV.update env
cmd = [ruby]
cmd.concat(ARGV)
cmd.unshift(*precommand) unless precommand.empty?
+cmd.push(:close_others => false)
if show
require 'shellwords'