[rubygems/rubygems] No need to overwrite path when there's a remote

https://github.com/rubygems/rubygems/commit/d86fb2c316
This commit is contained in:
David Rodríguez 2022-06-09 01:19:45 +02:00 коммит произвёл git
Родитель 870e5a39d5
Коммит a9077af75b
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -168,6 +168,9 @@ module Bundler
Bundler.rm_rf(path)
raise
end
else
path = cached_gem(spec)
raise GemNotFound, "Could not find #{spec.file_name} for installation" unless path
end
unless Bundler.settings[:no_install]
@ -175,8 +178,6 @@ module Bundler
message += " with native extensions" if spec.extensions.any?
Bundler.ui.confirm message
path = cached_gem(spec)
raise GemNotFound, "Could not find #{spec.file_name} for installation" unless path
if requires_sudo?
install_path = Bundler.tmp(spec.full_name)
bin_path = install_path.join("bin")