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

[rubygems/rubygems] Only need to call helper once

https://github.com/rubygems/rubygems/commit/6ddbf5bcab
This commit is contained in:
David Rodríguez 2020-04-27 22:17:30 +02:00 committed by Hiroshi SHIBATA
parent d2087f1cde
commit c74d306b22
Notes: git 2020-05-08 14:14:18 +09:00

View file

@ -324,9 +324,7 @@ By default, this RubyGems will install gem as:
pem_files = pem_files_in path
Dir.chdir path do
install_file_list(lib_files, lib_dir)
install_file_list(pem_files, lib_dir)
install_file_list(lib_files + pem_files, lib_dir)
end
end
end