1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[rubygems/rubygems] Don't format executables on gem update --system

This restores 3.0 behavior and goes back to not formatting executables
by default on `gem update --system`. This is friendlier for jruby and
doesn't really affect OS packagers.

https://github.com/rubygems/rubygems/commit/1a504b651d
This commit is contained in:
David Rodríguez 2020-07-10 22:11:13 +02:00 committed by Hiroshi SHIBATA
parent 0e2d8c487c
commit b7e88e3c2f
Notes: git 2020-07-31 21:08:07 +09:00

View file

@ -15,7 +15,7 @@ class Gem::Commands::SetupCommand < Gem::Command
require 'tmpdir'
super 'setup', 'Install RubyGems',
:format_executable => true, :document => %w[ri],
:format_executable => false, :document => %w[ri],
:force => true,
:site_or_vendor => 'sitelibdir',
:destdir => '', :prefix => '', :previous_version => '',