From c74d306b22606da28669264f8c449fe697c1fd3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Mon, 27 Apr 2020 22:17:30 +0200 Subject: [rubygems/rubygems] Only need to call helper once https://github.com/rubygems/rubygems/commit/6ddbf5bcab --- lib/rubygems/commands/setup_command.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/rubygems/commands/setup_command.rb b/lib/rubygems/commands/setup_command.rb index b330b8ae03..37a305eb3a 100644 --- a/lib/rubygems/commands/setup_command.rb +++ b/lib/rubygems/commands/setup_command.rb @@ -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 -- cgit v1.2.3