[rubygems/rubygems] Don't warn default behaviour

https://github.com/rubygems/rubygems/commit/ed845d861c
This commit is contained in:
David Rodríguez 2021-08-03 11:33:33 +02:00 коммит произвёл Hiroshi SHIBATA
Родитель 58635d4ff7
Коммит 8c1b31f7b3
1 изменённых файлов: 1 добавлений и 6 удалений

Просмотреть файл

@ -12,12 +12,7 @@ module Bundler
@options = options
@cmd = args.shift
@args = args
if !Bundler.current_ruby.jruby?
@args << { :close_others => !options.keep_file_descriptors? }
elsif options.keep_file_descriptors?
Bundler.ui.warn "Ruby version #{RUBY_VERSION} defaults to keeping non-standard file descriptors on Kernel#exec."
end
@args << { :close_others => !options.keep_file_descriptors? } unless Bundler.current_ruby.jruby?
end
def run