aboutsummaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-21 10:52:41 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-21 10:52:41 +0000
commit7a535db455d9f51b11d810de22bd1303f19d340b (patch)
tree1f318dfd5131fd847999db36be25e5291cf3b414 /tool
parent68154f4d14afad85e564b6b0ac711db91acdfbe3 (diff)
downloadruby-7a535db455d9f51b11d810de22bd1303f19d340b.tar.gz
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/trunk@50985 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 c6aaaa9cce..21735e8202 100755
--- a/tool/runruby.rb
+++ b/tool/runruby.rb
@@ -93,6 +93,7 @@ ENV.update env
cmd = [ruby]
cmd.concat(ARGV)
cmd.unshift(*precommand) unless precommand.empty?
+cmd.push(:close_others => false)
if show
require 'shellwords'